public enum InputType extends Enum<InputType>
| Enum Constant and Description |
|---|
button |
checkbox |
file |
hidden |
image |
password |
radio |
reset |
submit |
text |
| Modifier and Type | Method and Description |
|---|---|
static String |
toComponentType(InputType inputType)
To match the html input type to corresponding testatoo type
|
static InputType |
valueOf(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 text
public static final InputType password
public static final InputType checkbox
public static final InputType radio
public static final InputType submit
public static final InputType reset
public static final InputType file
public static final InputType hidden
public static final InputType image
public static final InputType button
public static InputType[] values()
for (InputType c : InputType.values()) System.out.println(c);
public static InputType 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 nullCopyright © 2008-2013 Ovea. All Rights Reserved.