public enum ValueTypes extends java.lang.Enum<ValueTypes>
| Enum Constant and Description |
|---|
BOOLEAN |
BYTE |
CHARACTER |
DOUBLE |
FLOAT |
INTEGER |
LIST |
LONG |
NODE_REF |
SHORT |
STRING |
UNKNOWN |
| Modifier and Type | Field and Description |
|---|---|
byte |
id |
| Modifier and Type | Method and Description |
|---|---|
static ValueTypes |
lookup(byte id) |
static ValueTypes |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ValueTypes[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ValueTypes BOOLEAN
public static final ValueTypes STRING
public static final ValueTypes BYTE
public static final ValueTypes SHORT
public static final ValueTypes INTEGER
public static final ValueTypes LONG
public static final ValueTypes FLOAT
public static final ValueTypes DOUBLE
public static final ValueTypes LIST
public static final ValueTypes NODE_REF
public static final ValueTypes UNKNOWN
public static final ValueTypes CHARACTER
public static ValueTypes[] values()
for (ValueTypes c : ValueTypes.values()) System.out.println(c);
public static ValueTypes 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 ValueTypes lookup(byte id)