| Enum Constant and Description |
|---|
button |
checkbox |
color |
date |
datetime |
email |
file |
hidden |
image |
month |
number |
password |
radio |
range |
reset |
search |
submit |
tel |
text |
time |
url |
week |
| 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.
|
public static final InputType button
public static final InputType checkbox
public static final InputType color
public static final InputType date
public static final InputType datetime
public static final InputType email
public static final InputType file
public static final InputType hidden
public static final InputType image
public static final InputType month
public static final InputType number
public static final InputType password
public static final InputType radio
public static final InputType range
public static final InputType reset
public static final InputType search
public static final InputType submit
public static final InputType tel
public static final InputType text
public static final InputType time
public static final InputType url
public static final InputType week
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