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