Enum DataTable.InternalPropertyKeys
- java.lang.Object
-
- java.lang.Enum<DataTable.InternalPropertyKeys>
-
- org.primefaces.component.datatable.DataTable.InternalPropertyKeys
-
- All Implemented Interfaces:
Serializable
,Comparable<DataTable.InternalPropertyKeys>
- Enclosing class:
- DataTable
protected static enum DataTable.InternalPropertyKeys extends Enum<DataTable.InternalPropertyKeys>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description columnMeta
defaultFilter
defaultSort
expandedRowKeys
filterByAsMap
resizableColumnsAsMap
selectAll
selectedRowKeys
sortByAsMap
visibleColumnsAsMap
width
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static DataTable.InternalPropertyKeys
valueOf(String name)
Returns the enum constant of this type with the specified name.static DataTable.InternalPropertyKeys[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
defaultFilter
public static final DataTable.InternalPropertyKeys defaultFilter
-
filterByAsMap
public static final DataTable.InternalPropertyKeys filterByAsMap
-
defaultSort
public static final DataTable.InternalPropertyKeys defaultSort
-
sortByAsMap
public static final DataTable.InternalPropertyKeys sortByAsMap
-
visibleColumnsAsMap
public static final DataTable.InternalPropertyKeys visibleColumnsAsMap
-
resizableColumnsAsMap
public static final DataTable.InternalPropertyKeys resizableColumnsAsMap
-
selectedRowKeys
public static final DataTable.InternalPropertyKeys selectedRowKeys
-
selectAll
public static final DataTable.InternalPropertyKeys selectAll
-
expandedRowKeys
public static final DataTable.InternalPropertyKeys expandedRowKeys
-
columnMeta
public static final DataTable.InternalPropertyKeys columnMeta
-
width
public static final DataTable.InternalPropertyKeys width
-
-
Method Detail
-
values
public static DataTable.InternalPropertyKeys[] 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 (DataTable.InternalPropertyKeys c : DataTable.InternalPropertyKeys.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static DataTable.InternalPropertyKeys 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
-
-