Enum Constant and Description |
---|
ANY |
BOOLEAN |
DATETIME |
DICTIONARY |
FILE |
LIST |
NUMBER |
RECORD |
STRING |
TABLE |
TASKBOT |
UNDEFINED |
WINDOW |
Modifier and Type | Method and Description |
---|---|
static DataType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static DataType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DataType UNDEFINED
public static final DataType ANY
public static final DataType STRING
public static final DataType NUMBER
public static final DataType BOOLEAN
public static final DataType LIST
public static final DataType DICTIONARY
public static final DataType TABLE
public static final DataType DATETIME
public static final DataType FILE
public static final DataType TASKBOT
public static final DataType WINDOW
public static final DataType RECORD
public static DataType[] values()
for (DataType c : DataType.values()) System.out.println(c);
public static DataType 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