public static enum KeyValue.UIType extends java.lang.Enum<KeyValue.UIType>
Enum Constant and Description |
---|
BOOLEAN |
CHECKBOX |
COLORPICKER |
COMBOBOX |
COMBOVALUES |
DATEPICKER |
LABEL |
LIST |
NUMBER |
RADIO |
RICHEDITOR |
TEXTBOX |
Modifier and Type | Method and Description |
---|---|
static KeyValue.UIType |
getType(java.lang.String value) |
java.lang.String |
toString() |
static KeyValue.UIType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static KeyValue.UIType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final KeyValue.UIType LABEL
public static final KeyValue.UIType TEXTBOX
public static final KeyValue.UIType NUMBER
public static final KeyValue.UIType BOOLEAN
public static final KeyValue.UIType CHECKBOX
public static final KeyValue.UIType DATEPICKER
public static final KeyValue.UIType COLORPICKER
public static final KeyValue.UIType RADIO
public static final KeyValue.UIType LIST
public static final KeyValue.UIType COMBOBOX
public static final KeyValue.UIType COMBOVALUES
public static final KeyValue.UIType RICHEDITOR
public static KeyValue.UIType[] values()
for (KeyValue.UIType c : KeyValue.UIType.values()) System.out.println(c);
public static KeyValue.UIType 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 toString()
toString
in class java.lang.Enum<KeyValue.UIType>
public static KeyValue.UIType getType(java.lang.String value)