Enum SelectOneButtonBase.PropertyKeys
- java.lang.Object
-
- java.lang.Enum<SelectOneButtonBase.PropertyKeys>
-
- org.primefaces.component.selectonebutton.SelectOneButtonBase.PropertyKeys
-
- All Implemented Interfaces:
Serializable
,Comparable<SelectOneButtonBase.PropertyKeys>
- Enclosing class:
- SelectOneButtonBase
public static enum SelectOneButtonBase.PropertyKeys extends Enum<SelectOneButtonBase.PropertyKeys>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description disabled
label
onchange
style
styleClass
tabindex
unselectable
widgetVar
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static SelectOneButtonBase.PropertyKeys
valueOf(String name)
Returns the enum constant of this type with the specified name.static SelectOneButtonBase.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 SelectOneButtonBase.PropertyKeys widgetVar
-
disabled
public static final SelectOneButtonBase.PropertyKeys disabled
-
label
public static final SelectOneButtonBase.PropertyKeys label
-
onchange
public static final SelectOneButtonBase.PropertyKeys onchange
-
style
public static final SelectOneButtonBase.PropertyKeys style
-
styleClass
public static final SelectOneButtonBase.PropertyKeys styleClass
-
tabindex
public static final SelectOneButtonBase.PropertyKeys tabindex
-
unselectable
public static final SelectOneButtonBase.PropertyKeys unselectable
-
-
Method Detail
-
values
public static SelectOneButtonBase.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 (SelectOneButtonBase.PropertyKeys c : SelectOneButtonBase.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 SelectOneButtonBase.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
-
-