| Enum Constant and Description |
|---|
COUNTRY_CODE |
EMAIL |
HIDDEN |
IMAGE |
NUMBER |
PASSWORD |
PHONE |
SELECT |
TEXT |
TOKEN |
| Modifier and Type | Method and Description |
|---|---|
static InputType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static InputType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
@SerializedName(value="select") public static final InputType SELECT
@SerializedName(value="text") public static final InputType TEXT
@SerializedName(value="password") public static final InputType PASSWORD
@SerializedName(value="email") public static final InputType EMAIL
@SerializedName(value="number") public static final InputType NUMBER
@SerializedName(value="phone") public static final InputType PHONE
@SerializedName(value="country_code") public static final InputType COUNTRY_CODE
@SerializedName(value="token") public static final InputType TOKEN
@SerializedName(value="hidden") public static final InputType HIDDEN
@SerializedName(value="image") public static final InputType IMAGE
public static InputType[] values()
for (InputType c : InputType.values()) System.out.println(c);
public static 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 null