Enum SelectOneMenuBase.PropertyKeys
- java.lang.Object
-
- java.lang.Enum<SelectOneMenuBase.PropertyKeys>
-
- org.primefaces.component.selectonemenu.SelectOneMenuBase.PropertyKeys
-
- All Implemented Interfaces:
Serializable
,Comparable<SelectOneMenuBase.PropertyKeys>
- Enclosing class:
- SelectOneMenuBase
public static enum SelectOneMenuBase.PropertyKeys extends Enum<SelectOneMenuBase.PropertyKeys>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description alwaysDisplayLabel
appendTo
autoWidth
caseSensitive
dir
dynamic
editable
filter
filterFunction
filterMatchMode
filterPlaceholder
height
label
labelTemplate
maxlength
panelStyle
panelStyleClass
placeholder
syncTooltip
title
touchable
var
widgetVar
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static SelectOneMenuBase.PropertyKeys
valueOf(String name)
Returns the enum constant of this type with the specified name.static SelectOneMenuBase.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 SelectOneMenuBase.PropertyKeys widgetVar
-
panelStyle
public static final SelectOneMenuBase.PropertyKeys panelStyle
-
panelStyleClass
public static final SelectOneMenuBase.PropertyKeys panelStyleClass
-
var
public static final SelectOneMenuBase.PropertyKeys var
-
height
public static final SelectOneMenuBase.PropertyKeys height
-
editable
public static final SelectOneMenuBase.PropertyKeys editable
-
filter
public static final SelectOneMenuBase.PropertyKeys filter
-
filterMatchMode
public static final SelectOneMenuBase.PropertyKeys filterMatchMode
-
filterFunction
public static final SelectOneMenuBase.PropertyKeys filterFunction
-
filterPlaceholder
public static final SelectOneMenuBase.PropertyKeys filterPlaceholder
-
caseSensitive
public static final SelectOneMenuBase.PropertyKeys caseSensitive
-
maxlength
public static final SelectOneMenuBase.PropertyKeys maxlength
-
appendTo
public static final SelectOneMenuBase.PropertyKeys appendTo
-
title
public static final SelectOneMenuBase.PropertyKeys title
-
syncTooltip
public static final SelectOneMenuBase.PropertyKeys syncTooltip
-
alwaysDisplayLabel
public static final SelectOneMenuBase.PropertyKeys alwaysDisplayLabel
-
label
public static final SelectOneMenuBase.PropertyKeys label
-
labelTemplate
public static final SelectOneMenuBase.PropertyKeys labelTemplate
-
placeholder
public static final SelectOneMenuBase.PropertyKeys placeholder
-
autoWidth
public static final SelectOneMenuBase.PropertyKeys autoWidth
-
dynamic
public static final SelectOneMenuBase.PropertyKeys dynamic
-
dir
public static final SelectOneMenuBase.PropertyKeys dir
-
touchable
public static final SelectOneMenuBase.PropertyKeys touchable
-
-
Method Detail
-
values
public static SelectOneMenuBase.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 (SelectOneMenuBase.PropertyKeys c : SelectOneMenuBase.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 SelectOneMenuBase.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
-
-