public static enum NativeConstants.IntegerDataType extends java.lang.Enum<NativeConstants.IntegerDataType>
| Enum Constant and Description |
|---|
INT_LENENC
Length-Encoded Integer Type
|
INT1
1 byte Protocol::FixedLengthInteger
|
INT2
2 byte Protocol::FixedLengthInteger
|
INT3
3 byte Protocol::FixedLengthInteger
|
INT4
4 byte Protocol::FixedLengthInteger
|
INT6
6 byte Protocol::FixedLengthInteger
|
INT8
8 byte Protocol::FixedLengthInteger
|
| Modifier and Type | Method and Description |
|---|---|
static NativeConstants.IntegerDataType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static NativeConstants.IntegerDataType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final NativeConstants.IntegerDataType INT1
public static final NativeConstants.IntegerDataType INT2
public static final NativeConstants.IntegerDataType INT3
public static final NativeConstants.IntegerDataType INT4
public static final NativeConstants.IntegerDataType INT6
public static final NativeConstants.IntegerDataType INT8
public static final NativeConstants.IntegerDataType INT_LENENC
public static NativeConstants.IntegerDataType[] values()
for (NativeConstants.IntegerDataType c : NativeConstants.IntegerDataType.values()) System.out.println(c);
public static NativeConstants.IntegerDataType 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 null