public static enum NativeConstants.StringLengthDataType extends java.lang.Enum<NativeConstants.StringLengthDataType>
| Enum Constant and Description |
|---|
STRING_FIXED
Protocol::FixedLengthString
Fixed-length strings have a known, hardcoded length.
|
STRING_VAR
Protocol::VariableLengthString
The length of the string is determined by another field or is calculated at runtime
|
| Modifier and Type | Method and Description |
|---|---|
static NativeConstants.StringLengthDataType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static NativeConstants.StringLengthDataType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final NativeConstants.StringLengthDataType STRING_FIXED
public static final NativeConstants.StringLengthDataType STRING_VAR
public static NativeConstants.StringLengthDataType[] values()
for (NativeConstants.StringLengthDataType c : NativeConstants.StringLengthDataType.values()) System.out.println(c);
public static NativeConstants.StringLengthDataType 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