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