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