Enum Constant | Description |
---|---|
DETERMINED_OFF |
|
DETERMINED_ON |
|
INDETERMINATE |
|
INTERMEDIATE |
Modifier and Type | Method | Description |
---|---|---|
static void |
encodeDoubleBitPacked(java.nio.ByteBuffer destBuffer,
java.util.List<DataPoint> dataPoints) |
|
static DoubleBit |
getInstance(int value) |
Returns the
DoubleBit that corresponds to the given int value. |
int |
intValue() |
Returns the value of this
DoubleBit as an int. |
static DoubleBit |
valueOf(java.lang.String name) |
Returns the enum constant of this type with the specified name.
|
static DoubleBit[] |
values() |
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DoubleBit INTERMEDIATE
public static final DoubleBit DETERMINED_OFF
public static final DoubleBit DETERMINED_ON
public static final DoubleBit INDETERMINATE
public static DoubleBit[] values()
for (DoubleBit c : DoubleBit.values()) System.out.println(c);
public static DoubleBit valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is nullpublic static DoubleBit getInstance(int value)
DoubleBit
that corresponds to the given int value. Returns null
if
no DoubleBit
with the given value exists.
value
- the valueDoubleBit
that corresponds to the given valuepublic static void encodeDoubleBitPacked(java.nio.ByteBuffer destBuffer, java.util.List<DataPoint> dataPoints)
public int intValue()
DoubleBit
as an int.