![JAR search and dependency download from the Maven repository](/logo.png)
net.intelie.liverig.witsml.etp.protocol.MessageFlags Maven / Gradle / Ivy
The newest version!
package net.intelie.liverig.witsml.etp.protocol;
public enum MessageFlags {
///
/// None
///
None(0x0),
///
/// A part of a multi-part message.
///
MultiPart(0x1),
///
/// The final part of a multi-part message, composed of: 0x1 | 0x2.
///
FinalPart(0x3),
///
/// No data is available.
///
NoData(0x4);
private final int value;
public int getValue() {
return this.value;
}
MessageFlags(int v) {
value = v;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy