public enum DataMessageType extends java.lang.Enum<DataMessageType>
Enum Constant and Description |
---|
BUFFER |
BYTE |
CHAR |
DOUBLE |
EMPTY |
INTEGER |
LONG |
MULTI_FIXED_BYTE |
OBJECT |
SHORT |
STRING |
Modifier and Type | Method and Description |
---|---|
static DataMessageType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static DataMessageType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DataMessageType INTEGER
public static final DataMessageType CHAR
public static final DataMessageType BYTE
public static final DataMessageType MULTI_FIXED_BYTE
public static final DataMessageType STRING
public static final DataMessageType LONG
public static final DataMessageType DOUBLE
public static final DataMessageType OBJECT
public static final DataMessageType BUFFER
public static final DataMessageType EMPTY
public static final DataMessageType SHORT
public static DataMessageType[] values()
for (DataMessageType c : DataMessageType.values()) System.out.println(c);
public static DataMessageType 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