Enum PickListBase.PropertyKeys
- java.lang.Object
-
- java.lang.Enum<PickListBase.PropertyKeys>
-
- org.primefaces.component.picklist.PickListBase.PropertyKeys
-
- All Implemented Interfaces:
Serializable
,Comparable<PickListBase.PropertyKeys>
- Enclosing class:
- PickListBase
public static enum PickListBase.PropertyKeys extends Enum<PickListBase.PropertyKeys>
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static PickListBase.PropertyKeys
valueOf(String name)
Returns the enum constant of this type with the specified name.static PickListBase.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 PickListBase.PropertyKeys widgetVar
-
var
public static final PickListBase.PropertyKeys var
-
itemLabel
public static final PickListBase.PropertyKeys itemLabel
-
itemValue
public static final PickListBase.PropertyKeys itemValue
-
style
public static final PickListBase.PropertyKeys style
-
styleClass
public static final PickListBase.PropertyKeys styleClass
-
disabled
public static final PickListBase.PropertyKeys disabled
-
effect
public static final PickListBase.PropertyKeys effect
-
effectSpeed
public static final PickListBase.PropertyKeys effectSpeed
-
escape
public static final PickListBase.PropertyKeys escape
-
addLabel
public static final PickListBase.PropertyKeys addLabel
-
addAllLabel
public static final PickListBase.PropertyKeys addAllLabel
-
removeLabel
public static final PickListBase.PropertyKeys removeLabel
-
removeAllLabel
public static final PickListBase.PropertyKeys removeAllLabel
-
moveUpLabel
public static final PickListBase.PropertyKeys moveUpLabel
-
moveTopLabel
public static final PickListBase.PropertyKeys moveTopLabel
-
moveDownLabel
public static final PickListBase.PropertyKeys moveDownLabel
-
moveBottomLabel
public static final PickListBase.PropertyKeys moveBottomLabel
-
showSourceControls
public static final PickListBase.PropertyKeys showSourceControls
-
showTargetControls
public static final PickListBase.PropertyKeys showTargetControls
-
onTransfer
public static final PickListBase.PropertyKeys onTransfer
-
label
public static final PickListBase.PropertyKeys label
-
itemDisabled
public static final PickListBase.PropertyKeys itemDisabled
-
showSourceFilter
public static final PickListBase.PropertyKeys showSourceFilter
-
showTargetFilter
public static final PickListBase.PropertyKeys showTargetFilter
-
filterMatchMode
public static final PickListBase.PropertyKeys filterMatchMode
-
filterFunction
public static final PickListBase.PropertyKeys filterFunction
-
showCheckbox
public static final PickListBase.PropertyKeys showCheckbox
-
labelDisplay
public static final PickListBase.PropertyKeys labelDisplay
-
orientation
public static final PickListBase.PropertyKeys orientation
-
responsive
public static final PickListBase.PropertyKeys responsive
-
tabindex
public static final PickListBase.PropertyKeys tabindex
-
filterEvent
public static final PickListBase.PropertyKeys filterEvent
-
filterDelay
public static final PickListBase.PropertyKeys filterDelay
-
escapeValue
public static final PickListBase.PropertyKeys escapeValue
-
transferOnDblclick
public static final PickListBase.PropertyKeys transferOnDblclick
-
transferOnCheckboxClick
public static final PickListBase.PropertyKeys transferOnCheckboxClick
-
-
Method Detail
-
values
public static PickListBase.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 (PickListBase.PropertyKeys c : PickListBase.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 PickListBase.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
-
-