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