Enum PasswordBase.PropertyKeys
- java.lang.Object
-
- java.lang.Enum<PasswordBase.PropertyKeys>
-
- org.primefaces.component.password.PasswordBase.PropertyKeys
-
- All Implemented Interfaces:
Serializable
,Comparable<PasswordBase.PropertyKeys>
- Enclosing class:
- PasswordBase
public static enum PasswordBase.PropertyKeys extends Enum<PasswordBase.PropertyKeys>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description feedback
goodLabel
hideEvent
ignoreLastPass
inline
match
placeholder
promptLabel
redisplay
showEvent
strongLabel
toggleMask
weakLabel
widgetVar
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static PasswordBase.PropertyKeys
valueOf(String name)
Returns the enum constant of this type with the specified name.static PasswordBase.PropertyKeys[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
placeholder
public static final PasswordBase.PropertyKeys placeholder
-
widgetVar
public static final PasswordBase.PropertyKeys widgetVar
-
feedback
public static final PasswordBase.PropertyKeys feedback
-
inline
public static final PasswordBase.PropertyKeys inline
-
promptLabel
public static final PasswordBase.PropertyKeys promptLabel
-
weakLabel
public static final PasswordBase.PropertyKeys weakLabel
-
goodLabel
public static final PasswordBase.PropertyKeys goodLabel
-
strongLabel
public static final PasswordBase.PropertyKeys strongLabel
-
redisplay
public static final PasswordBase.PropertyKeys redisplay
-
match
public static final PasswordBase.PropertyKeys match
-
showEvent
public static final PasswordBase.PropertyKeys showEvent
-
hideEvent
public static final PasswordBase.PropertyKeys hideEvent
-
ignoreLastPass
public static final PasswordBase.PropertyKeys ignoreLastPass
-
toggleMask
public static final PasswordBase.PropertyKeys toggleMask
-
-
Method Detail
-
values
public static PasswordBase.PropertyKeys[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (PasswordBase.PropertyKeys c : PasswordBase.PropertyKeys.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static PasswordBase.PropertyKeys valueOf(String name)
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
-
-