Package org.apache.tapestry5
Enum FieldFocusPriority
- All Implemented Interfaces:
Serializable
,Comparable<FieldFocusPriority>
,java.lang.constant.Constable
Used to determine which field on a page should receive focus, based on its status.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionA field that contains a validation error, the highest normal priority.An optional field, the lowest priority.Used to allow field focus to be manually overridden; this would be selected in user code and is higher priority thanIN_ERROR
.A field whose input is required, which takes higher priority than optional. -
Method Summary
Modifier and TypeMethodDescriptionstatic FieldFocusPriority
Returns the enum constant of this type with the specified name.static FieldFocusPriority[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
Enum Constant Details
-
OPTIONAL
An optional field, the lowest priority. -
REQUIRED
A field whose input is required, which takes higher priority than optional. -
IN_ERROR
A field that contains a validation error, the highest normal priority. -
OVERRIDE
Used to allow field focus to be manually overridden; this would be selected in user code and is higher priority thanIN_ERROR
.- Since:
- 5.1.0.4
- See Also:
-
-
Method Details
-
values
Returns an array containing the constants of this enum type, in the order they are declared.- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (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 type has no constant with the specified nameNullPointerException
- if the argument is null
-