static enum UIData.PropertyKeys extends java.lang.Enum<UIData.PropertyKeys>
Enum Constant and Description |
---|
first
The first row number (zero-relative) to be displayed.
|
lastId
Last id vended by
UIData.createUniqueId(javax.faces.context.FacesContext, String) . |
rowIndex
The zero-relative index of the current row number, or -1 for no
current row association.
|
rows
The number of rows to display, or zero for all remaining rows in the
table.
|
rowStatePreserved |
saved
This map contains
SavedState instances for each
descendant component, keyed by the client identifier of the descendant. |
value
The local value of this
UIComponent . |
var
The request scope attribute under which the data object for the
current row will be exposed when iterating.
|
Modifier and Type | Method and Description |
---|---|
static UIData.PropertyKeys |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static UIData.PropertyKeys[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final UIData.PropertyKeys first
The first row number (zero-relative) to be displayed.
public static final UIData.PropertyKeys rowIndex
The zero-relative index of the current row number, or -1 for no current row association.
public static final UIData.PropertyKeys rows
The number of rows to display, or zero for all remaining rows in the table.
public static final UIData.PropertyKeys saved
This map contains SavedState
instances for each
descendant component, keyed by the client identifier of the descendant.
Because descendant client identifiers will contain the
rowIndex
value of the parent, per-row state information is
actually preserved.
public static final UIData.PropertyKeys value
The local value of this UIComponent
.
public static final UIData.PropertyKeys var
The request scope attribute under which the data object for the current row will be exposed when iterating.
public static final UIData.PropertyKeys lastId
Last id vended by UIData.createUniqueId(javax.faces.context.FacesContext, String)
.
public static final UIData.PropertyKeys rowStatePreserved
public static UIData.PropertyKeys[] values()
for (UIData.PropertyKeys c : UIData.PropertyKeys.values()) System.out.println(c);
public static UIData.PropertyKeys valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null