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