Class IterableDataModel<E>
- java.lang.Object
- 
- jakarta.faces.model.DataModel<E>
- 
- jakarta.faces.model.IterableDataModel<E>
 
 
- 
- All Implemented Interfaces:
- Iterable<E>
 
 public class IterableDataModel<E> extends DataModel<E> IterableDataModel is an implementation of DataModelthat wraps anIterable.This can be used to encapsulate nearly every collection type, including Collectionderived types such asListandSet. As such this specific DataModel can be used instead of more specific DataModels likeListDataModelandCollectionDataModel.
- 
- 
Constructor SummaryConstructors Constructor Description IterableDataModel()Construct a newIterableDataModelwith no specified wrapped data.IterableDataModel(Iterable<E> iterable)Construct a newIterableDataModelwrapping the specified iterable.
 - 
Method SummaryAll Methods Instance Methods Concrete Methods Modifier and Type Method Description intgetRowCount()Return the number of rows of data objects represented by thisDataModel.EgetRowData()Return an object representing the data for the currenty selected row index.intgetRowIndex()Return the zero-relative index of the currently selected row.ObjectgetWrappedData()Return the object representing the data wrapped by thisDataModel, if any.booleanisRowAvailable()Return a flag indicating whether there isrowDataavailable at the currentrowIndex.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.voidsetWrappedData(Object data)Set the object representing the data collection wrapped by thisDataModel.- 
Methods inherited from class jakarta.faces.model.DataModeladdDataModelListener, getDataModelListeners, iterator, removeDataModelListener
 - 
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
 
- 
 
- 
- 
- 
Constructor Detail- 
IterableDataModelpublic IterableDataModel() Construct a new IterableDataModelwith no specified wrapped data.
 - 
IterableDataModelpublic IterableDataModel(Iterable<E> iterable) Construct a new IterableDataModelwrapping the specified iterable.- Parameters:
- iterable- Iterable to be wrapped.
 
 
- 
 - 
Method Detail- 
isRowAvailablepublic boolean isRowAvailable() Return a flag indicating whether there is rowDataavailable at the currentrowIndex. If nowrappedDatais available, returnfalse.- Specified by:
- isRowAvailablein class- DataModel<E>
- 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 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.- Specified by:
- getRowCountin class- DataModel<E>
- Returns:
- the number of rows of data represented by this DataModel
- Throws:
- FacesException- if an error occurs getting the row count
 
 - 
getRowDatapublic E getRowData() Return an object representing the data for the currenty selected row index. If no wrappedDatais available, returnnull.- Specified by:
- getRowDatain class- DataModel<E>
- 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 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.- Specified by:
- getRowIndexin class- DataModel<E>
- Returns:
- the index of the currently selected row
- Throws:
- FacesException- if an error occurs getting the row index
 
 - 
setRowIndexpublic 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.- Specified by:
- setRowIndexin class- DataModel<E>
- 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 Object getWrappedData() Return the object representing the data wrapped by this DataModel, if any.- Specified by:
- getWrappedDatain class- DataModel<E>
- Returns:
- the Objectthat this model wraps.
 
 - 
setWrappedDatapublic 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.- Specified by:
- setWrappedDatain class- DataModel<E>
- 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
 
 
- 
 
-