Class DataModel<E>
- java.lang.Object
- 
- jakarta.faces.model.DataModel<E>
 
- 
- All Implemented Interfaces:
- Iterable<E>
 - Direct Known Subclasses:
- ArrayDataModel,- CollectionDataModel,- IterableDataModel,- ListDataModel,- ResultSetDataModel,- ScalarDataModel
 
 public abstract class DataModel<E> extends Object implements Iterable<E> DataModel is an abstraction around arbitrary data binding technologies that can be used to adapt a variety of data sources for use by Jakarta Faces components that support per-row processing for their child components (such as UIData.The data collection underlying a DataModelinstance is modeled as a collection of row objects that can be accessed by a zero-relative cursor (row index). The APIs provide mechanisms to position to a specified zero-relative row index, and to retrieve an object that represents the data that corresponds to the current row index.A concrete DataModelinstance is attached to a particular collection of underlying data by calling thesetWrappedData()method. It can be detached from that underlying data collection by passing anullparameter to this method.Concrete DataModelimplementations must provide a public zero-arguments constructor that callssetWrappedData(null). A convenience constructor that takes a wrapped object of the appropriate type (and passes it on via a call tosetWrappedData(), should also be provided.Event listeners may be registered to receive notifications of when a new row index is selected. 
- 
- 
Constructor SummaryConstructors Constructor Description DataModel()
 - 
Method SummaryAll Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description voidaddDataModelListener(DataModelListener listener)Add a newDataModelListenerto the set interested in notifications from thisDataModel.DataModelListener[]getDataModelListeners()Return the set ofDataModelListeners interested in notifications from thisDataModel.abstract intgetRowCount()Return the number of rows of data objects represented by thisDataModel.abstract EgetRowData()Return an object representing the data for the currently selected row index.abstract intgetRowIndex()Return the zero-relative index of the currently selected row.abstract ObjectgetWrappedData()Return the object representing the data wrapped by thisDataModel, if any.abstract booleanisRowAvailable()Return a flag indicating whether there isrowDataavailable at the currentrowIndex.Iterator<E>iterator()Return a read-onlyIteratorover the row data for this model.voidremoveDataModelListener(DataModelListener listener)Remove an existingDataModelListenerfrom the set interested in notifications from thisDataModel.abstract voidsetRowIndex(int rowIndex)Set the zero-relative index of the currently selected row, or -1 to indicate that we are not positioned on a row.abstract voidsetWrappedData(Object data)Set the object representing the data collection wrapped by thisDataModel.- 
Methods inherited from class java.lang.Objectclone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 - 
Methods inherited from interface java.lang.IterableforEach, spliterator
 
- 
 
- 
- 
- 
Method Detail- 
isRowAvailablepublic abstract boolean isRowAvailable() Return a flag indicating whether there is rowDataavailable at the currentrowIndex. If nowrappedDatais available, returnfalse.- Returns:
- true if and only if there is data available at the current index, false otherwise.
- Throws:
- FacesException- if an error occurs getting the row availability
 
 - 
getRowCountpublic abstract int getRowCount() Return the number of rows of data objects represented by this DataModel. If the number of rows is unknown, or nowrappedDatais available, return -1.- Returns:
- the number of rows of data represented by this DataModel
- Throws:
- FacesException- if an error occurs getting the row count
 
 - 
getRowDatapublic abstract E getRowData() Return an object representing the data for the currently selected row index. If no wrappedDatais available, returnnull.- Returns:
- an object representing the data for the currently selected row index
- Throws:
- FacesException- if an error occurs getting the row data
- IllegalArgumentException- if now row data is available at the currently specified row index
 
 - 
getRowIndexpublic abstract int getRowIndex() Return the zero-relative index of the currently selected row. If we are not currently positioned on a row, or no wrappedDatais available, return -1.- Returns:
- the index of the currently selected row
- Throws:
- FacesException- if an error occurs getting the row index
 
 - 
setRowIndexpublic abstract void setRowIndex(int rowIndex) Set the zero-relative index of the currently selected row, or -1 to indicate that we are not positioned on a row. It is possible to set the row index at a value for which the underlying data collection does not contain any row data. Therefore, callers may use the isRowAvailable()method to detect whether row data will be available for use by thegetRowData()method.If there is no wrappedDataavailable when this method is called, the specifiedrowIndexis stored (and may be retrieved by a subsequent call togetRowData()), but no event is sent. Otherwise, if the currently selected row index is changed by this call, aDataModelEventwill be sent to therowSelected()method of all registeredDataModelListeners.- Parameters:
- rowIndex- The new zero-relative index (must be non-negative)
- Throws:
- FacesException- if an error occurs setting the row index
- IllegalArgumentException- if- rowIndexis less than -1
 
 - 
getWrappedDatapublic abstract Object getWrappedData() Return the object representing the data wrapped by this DataModel, if any.- Returns:
- the Objectthat this model wraps.
 
 - 
setWrappedDatapublic abstract void setWrappedData(Object data) Set the object representing the data collection wrapped by this DataModel. If the specifieddataisnull, detach thisDataModelfrom any previously wrapped data collection instead.If datais non-null, the currently selected row index must be set to zero, and aDataModelEventmust be sent to therowSelected()method of all registeredDataModelListeners indicating that this row is now selected.- Parameters:
- data- Data collection to be wrapped, or- nullto detach from any previous data collection
- Throws:
- ClassCastException- if- datais not of the appropriate type for this- DataModelimplementation
 
 - 
addDataModelListenerpublic void addDataModelListener(DataModelListener listener) Add a new DataModelListenerto the set interested in notifications from thisDataModel.- Parameters:
- listener- The new- DataModelListenerto be registered
- Throws:
- NullPointerException- if- listeneris- null
 
 - 
getDataModelListenerspublic DataModelListener[] getDataModelListeners() Return the set of DataModelListeners interested in notifications from thisDataModel. If there are no such listeners, an empty array is returned.- Returns:
- the listeners for this instance, or an empty array
 
 - 
removeDataModelListenerpublic void removeDataModelListener(DataModelListener listener) Remove an existing DataModelListenerfrom the set interested in notifications from thisDataModel.- Parameters:
- listener- The old- DataModelListenerto be deregistered
- Throws:
- NullPointerException- if- listeneris- null
 
 
- 
 
-