Enum Class UIInput.ValidateEmptyFields
- All Implemented Interfaces:
Serializable, Comparable<UIInput.ValidateEmptyFields>, Constable
- Enclosing class:
UIInput
Allowed values for the initialization parameter named by the "jakarta.faces.VALIDATE_EMPTY_FIELDS" constant.
- Since:
- 5.0
-
Nested Class Summary
Nested classes/interfaces inherited from class Enum
Enum.EnumDesc<E> -
Enum Constant Summary
Enum Constants -
Method Summary
Modifier and TypeMethodDescriptionstatic UIInput.ValidateEmptyFieldsReturns the enum constant of this class with the specified name.static UIInput.ValidateEmptyFields[]values()Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
AUTO
Indicates that empty fields should only be validated when Bean Validation is present.
-
TRUE
Indicates that empty fields should always be validated.
-
FALSE
Indicates that empty fields should never be validated.
-
-
Method Details
-
values
Returns 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
-
valueOf
Returns 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 nameNullPointerException- if the argument is null
-