public enum HtmlInputTypes extends Enum<HtmlInputTypes> implements HtmlTypes
Enum Constant and Description |
---|
BUTTON |
CHECKBOX |
FILE |
HIDDEN |
IMAGE |
PASSWORD |
RADIO |
RANGE |
RESET |
SUBMIT |
TEXT |
Modifier and Type | Method and Description |
---|---|
String |
getValue() |
static HtmlInputTypes |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static HtmlInputTypes[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final HtmlInputTypes TEXT
public static final HtmlInputTypes PASSWORD
public static final HtmlInputTypes CHECKBOX
public static final HtmlInputTypes RADIO
public static final HtmlInputTypes RANGE
public static final HtmlInputTypes SUBMIT
public static final HtmlInputTypes RESET
public static final HtmlInputTypes FILE
public static final HtmlInputTypes HIDDEN
public static final HtmlInputTypes IMAGE
public static final HtmlInputTypes BUTTON
public static HtmlInputTypes[] values()
for (HtmlInputTypes c : HtmlInputTypes.values()) System.out.println(c);
public static HtmlInputTypes 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 © 2002–2022 The Apache Software Foundation. All rights reserved.