Enum Constant and Description |
---|
ACTION_DEFINITION |
BOOLEAN |
DATE |
ENTITY |
FORMAT |
MIXED |
MULTISELECT_ENTITY |
MULTISELECT_HIERARCHY |
MULTISELECT_MODULE |
MULTISELECT_USER |
NONE |
NUMBER |
SUMMARY |
TEXT |
Modifier and Type | Method and Description |
---|---|
java.lang.String |
getLabel()
Return an identifier for the data type.
|
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 NONE
public static final DataType NUMBER
public static final DataType ENTITY
public static final DataType DATE
public static final DataType TEXT
public static final DataType BOOLEAN
public static final DataType FORMAT
public static final DataType SUMMARY
public static final DataType MULTISELECT_HIERARCHY
public static final DataType MULTISELECT_USER
public static final DataType MULTISELECT_ENTITY
public static final DataType MULTISELECT_MODULE
public static final DataType ACTION_DEFINITION
public static final DataType MIXED
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 nullpublic java.lang.String getLabel()