public static enum TextInputChannel.TextInputType extends Enum<TextInputChannel.TextInputType>
| Enum Constant and Description |
|---|
DATETIME |
EMAIL_ADDRESS |
MULTILINE |
NAME |
NUMBER |
PHONE |
POSTAL_ADDRESS |
TEXT |
URL |
VISIBLE_PASSWORD |
| Modifier and Type | Method and Description |
|---|---|
static TextInputChannel.TextInputType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TextInputChannel.TextInputType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TextInputChannel.TextInputType TEXT
public static final TextInputChannel.TextInputType DATETIME
public static final TextInputChannel.TextInputType NAME
public static final TextInputChannel.TextInputType POSTAL_ADDRESS
public static final TextInputChannel.TextInputType NUMBER
public static final TextInputChannel.TextInputType PHONE
public static final TextInputChannel.TextInputType MULTILINE
public static final TextInputChannel.TextInputType EMAIL_ADDRESS
public static final TextInputChannel.TextInputType URL
public static final TextInputChannel.TextInputType VISIBLE_PASSWORD
public static TextInputChannel.TextInputType[] values()
for (TextInputChannel.TextInputType c : TextInputChannel.TextInputType.values()) System.out.println(c);
public static TextInputChannel.TextInputType valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is null