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