public static enum OptionType.InputType extends java.lang.Enum<OptionType.InputType>
| Enum Constant and Description |
|---|
CHECKBOX |
CODE_EDITOR |
NUMBER |
PASSWORD |
RADIO |
SELECT |
TEXT |
TEXTAREA |
| Modifier and Type | Method and Description |
|---|---|
java.lang.String |
toString() |
static OptionType.InputType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static OptionType.InputType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final OptionType.InputType TEXT
public static final OptionType.InputType PASSWORD
public static final OptionType.InputType NUMBER
public static final OptionType.InputType TEXTAREA
public static final OptionType.InputType SELECT
public static final OptionType.InputType CHECKBOX
public static final OptionType.InputType RADIO
public static final OptionType.InputType CODE_EDITOR
public static OptionType.InputType[] values()
for (OptionType.InputType c : OptionType.InputType.values()) System.out.println(c);
public static OptionType.InputType 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<OptionType.InputType>