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