static enum UIInput.PropertyKeys extends java.lang.Enum<UIInput.PropertyKeys>
Enum Constant and Description |
---|
converterMessage
Custom message to be displayed when conversion fails.
|
immediate
Flag indicating when conversion/validation should occur.
|
localValueSet
The "localValueSet" state for this component.
|
required
If the input is required or not.
|
requiredMessage
Custom message to be displayed if input is required but non was submitted.
|
valid
Flag indicating whether or not this component is valid.
|
validatorMessage
Custom message to be displayed when validation fails.
|
Modifier and Type | Method and Description |
---|---|
static UIInput.PropertyKeys |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static UIInput.PropertyKeys[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final UIInput.PropertyKeys localValueSet
The "localValueSet" state for this component.
public static final UIInput.PropertyKeys required
If the input is required or not.
public static final UIInput.PropertyKeys requiredMessage
Custom message to be displayed if input is required but non was submitted.
public static final UIInput.PropertyKeys converterMessage
Custom message to be displayed when conversion fails.
public static final UIInput.PropertyKeys validatorMessage
Custom message to be displayed when validation fails.
public static final UIInput.PropertyKeys valid
Flag indicating whether or not this component is valid.
public static final UIInput.PropertyKeys immediate
Flag indicating when conversion/validation should occur.
public static UIInput.PropertyKeys[] values()
for (UIInput.PropertyKeys c : UIInput.PropertyKeys.values()) System.out.println(c);
public static UIInput.PropertyKeys valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null