Enum OrderListBase.PropertyKeys
- java.lang.Object
-
- java.lang.Enum<OrderListBase.PropertyKeys>
-
- org.primefaces.component.orderlist.OrderListBase.PropertyKeys
-
- All Implemented Interfaces:
Serializable,Comparable<OrderListBase.PropertyKeys>
- Enclosing class:
- OrderListBase
public static enum OrderListBase.PropertyKeys extends Enum<OrderListBase.PropertyKeys>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description controlsLocationdisabledeffectitemLabelitemValuemoveBottomLabelmoveDownLabelmoveTopLabelmoveUpLabelresponsivestylestyleClassvarwidgetVar
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static OrderListBase.PropertyKeysvalueOf(String name)Returns the enum constant of this type with the specified name.static OrderListBase.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 OrderListBase.PropertyKeys widgetVar
-
var
public static final OrderListBase.PropertyKeys var
-
itemLabel
public static final OrderListBase.PropertyKeys itemLabel
-
itemValue
public static final OrderListBase.PropertyKeys itemValue
-
style
public static final OrderListBase.PropertyKeys style
-
styleClass
public static final OrderListBase.PropertyKeys styleClass
-
disabled
public static final OrderListBase.PropertyKeys disabled
-
effect
public static final OrderListBase.PropertyKeys effect
-
moveUpLabel
public static final OrderListBase.PropertyKeys moveUpLabel
-
moveTopLabel
public static final OrderListBase.PropertyKeys moveTopLabel
-
moveDownLabel
public static final OrderListBase.PropertyKeys moveDownLabel
-
moveBottomLabel
public static final OrderListBase.PropertyKeys moveBottomLabel
-
controlsLocation
public static final OrderListBase.PropertyKeys controlsLocation
-
responsive
public static final OrderListBase.PropertyKeys responsive
-
-
Method Detail
-
values
public static OrderListBase.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 (OrderListBase.PropertyKeys c : OrderListBase.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 OrderListBase.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
-
-