Enum CheckboxBase.PropertyKeys
- java.lang.Object
-
- java.lang.Enum<CheckboxBase.PropertyKeys>
-
- org.primefaces.component.checkbox.CheckboxBase.PropertyKeys
-
- All Implemented Interfaces:
Serializable,Comparable<CheckboxBase.PropertyKeys>
- Enclosing class:
- CheckboxBase
public static enum CheckboxBase.PropertyKeys extends Enum<CheckboxBase.PropertyKeys>
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description StringtoString()static CheckboxBase.PropertyKeysvalueOf(String name)Returns the enum constant of this type with the specified name.static CheckboxBase.PropertyKeys[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
widgetVar
public static final CheckboxBase.PropertyKeys widgetVar
-
disabled
public static final CheckboxBase.PropertyKeys disabled
-
itemIndex
public static final CheckboxBase.PropertyKeys itemIndex
-
onchange
public static final CheckboxBase.PropertyKeys onchange
-
forValue
public static final CheckboxBase.PropertyKeys forValue
-
style
public static final CheckboxBase.PropertyKeys style
-
styleClass
public static final CheckboxBase.PropertyKeys styleClass
-
tabindex
public static final CheckboxBase.PropertyKeys tabindex
-
-
Method Detail
-
values
public static CheckboxBase.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 (CheckboxBase.PropertyKeys c : CheckboxBase.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 CheckboxBase.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
-
toString
public String toString()
- Overrides:
toStringin classEnum<CheckboxBase.PropertyKeys>
-
-