public class SortableModel extends CollectionModel
LocalRowKeyIndex.Confidence, LocalRowKeyIndex.LocalCachingStrategy
Constructor and Description |
---|
SortableModel()
No arg constructor for use as a managed-bean.
|
SortableModel(Object model)
Create a new SortableModel from the given instance.
|
Modifier and Type | Method and Description |
---|---|
void |
addDataModelListener(javax.faces.model.DataModelListener listener) |
javax.faces.model.DataModelListener[] |
getDataModelListeners() |
int |
getRowCount()
Gets the number of values in this collection
|
Object |
getRowData()
Gets the current value identified by the current index or rowKey.
|
int |
getRowIndex()
Gets the index of the current value.
|
Object |
getRowKey()
Gets the row key of the current row
|
List<SortCriterion> |
getSortCriteria()
Gets the criteria that this collection is sorted by.
|
Object |
getWrappedData() |
boolean |
isRowAvailable()
Checks to make sure a value exists for the current index or rowKey.
|
boolean |
isSortable(String property)
Checks to see if the underlying collection is sortable by the given property.
|
void |
removeDataModelListener(javax.faces.model.DataModelListener listener) |
void |
setRowIndex(int rowIndex)
Sets up a value at a particular index to be the current value.
|
void |
setRowKey(Object key)
Finds the row with the matching key and makes it current
|
void |
setSortCriteria(List<SortCriterion> criteria)
Sorts this collection by the given criteria.
|
void |
setWrappedData(Object data)
Sets the underlying data being managed by this instance.
|
String |
toString() |
addRowKeyChangeListener, areRowsAvailable, areRowsAvailable, areRowsAvailable, areRowsLocallyAvailable, areRowsLocallyAvailable, areRowsLocallyAvailable, clearCachedRow, clearCachedRow, clearCachedRows, clearCachedRows, clearLocalCache, fireRowKeyChange, getCachingStrategy, getEstimatedRowCount, getEstimatedRowCountConfidence, getRowData, getRowData, isRowAvailable, isRowAvailable, isRowLocallyAvailable, isRowLocallyAvailable, removeRowKeyChangeListener
public SortableModel(Object model)
model
- This will be converted into a DataModel
setWrappedData(java.lang.Object)
public SortableModel()
public Object getRowData()
RowKeyIndex
getRowData
in interface RowKeyIndex
getRowData
in class javax.faces.model.DataModel
RowKeyIndex.getRowKey()
,
RowKeyIndex.getRowIndex()
public Object getWrappedData()
getWrappedData
in class javax.faces.model.DataModel
public boolean isRowAvailable()
RowKeyIndex
RowKeyIndex.getRowCount()
).isRowAvailable
in interface RowKeyIndex
isRowAvailable
in class javax.faces.model.DataModel
RowKeyIndex.getRowKey()
,
RowKeyIndex.getRowIndex()
public void setWrappedData(Object data)
setWrappedData
in class javax.faces.model.DataModel
data
- This Object will be converted into a
DataModel
.ModelUtils.toDataModel(java.lang.Object)
public int getRowCount()
RowKeyIndex
getRowCount
in interface RowKeyIndex
getRowCount
in class javax.faces.model.DataModel
public void setRowIndex(int rowIndex)
RowKeyIndex
setRowIndex
in interface RowKeyIndex
setRowIndex
in class javax.faces.model.DataModel
rowIndex
- the zero-based index of the value to make current.
Use -1 to clear the current valuepublic int getRowIndex()
RowKeyIndex
getRowIndex
in interface RowKeyIndex
getRowIndex
in class javax.faces.model.DataModel
public Object getRowKey()
getRowKey
in interface RowKeyIndex
getRowKey
in class CollectionModel
CollectionModel.setRowKey(java.lang.Object)
public void setRowKey(Object key)
setRowKey
in interface RowKeyIndex
setRowKey
in class CollectionModel
key
- the rowKey, previously obtained from CollectionModel.getRowKey()
.public void addDataModelListener(javax.faces.model.DataModelListener listener)
addDataModelListener
in class javax.faces.model.DataModel
public javax.faces.model.DataModelListener[] getDataModelListeners()
getDataModelListeners
in class javax.faces.model.DataModel
public void removeDataModelListener(javax.faces.model.DataModelListener listener)
removeDataModelListener
in class javax.faces.model.DataModel
public boolean isSortable(String property)
isSortable
in class CollectionModel
property
- The name of the property to sort the underlying collection by.public List<SortCriterion> getSortCriteria()
CollectionModel
getSortCriteria
in class CollectionModel
SortCriterion
public void setSortCriteria(List<SortCriterion> criteria)
CollectionModel
setSortCriteria
in class CollectionModel
criteria
- Each element in this List must be of type SortCriterion.
The empty list may be used to cancel any sort order. null should be treated
the same as an empty list.SortCriterion
Copyright © 2001-2016 The Apache Software Foundation. All Rights Reserved.