Package io.micronaut.views.fields
Enum Class InputType
- All Implemented Interfaces:
- Serializable,- Comparable<InputType>,- Constable
Constants for the value of the type attribute in an HTML input tag.
- Since:
- 4.1.0
- Author:
- Sergio del Amo
- 
Nested Class SummaryNested classes/interfaces inherited from class java.lang.EnumEnum.EnumDesc<E extends Enum<E>>
- 
Enum Constant SummaryEnum ConstantsEnum ConstantDescriptionHTML Input type checkbox.HTML Input type date.HTML Input type datetime-local.HTML Input type email.HTML Input type hidden.HTML Input type number.HTML Input type password.HTML Input type radio.HTML Input type submit.HTML Input type tel.HTML Input type text.HTML Input type time.HTML Input type url.
- 
Method Summary
- 
Enum Constant Details- 
RADIOHTML Input type radio.
- 
SUBMITHTML Input type submit.
- 
HIDDENHTML Input type hidden.
- 
NUMBERHTML Input type number.
- 
DATEHTML Input type date.
- 
TIMEHTML Input type time.
- 
DATE_TIME_LOCALHTML Input type datetime-local.
- 
CHECKBOXHTML Input type checkbox.
- 
EMAILHTML Input type email.
- 
PASSWORDHTML Input type password.
- 
URLHTML Input type url.
- 
TEXTHTML Input type text.
- 
TELHTML Input type tel.
 
- 
- 
Method Details- 
valuesReturns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
 
- 
valueOfReturns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)- Parameters:
- name- the name of the enum constant to be returned.
- Returns:
- the enum constant with the specified name
- Throws:
- IllegalArgumentException- if this enum class has no constant with the specified name
- NullPointerException- if the argument is null
 
- 
toString
 
-