T - public class EmptyDataProvider<T> extends Object implements IDataProvider<T>
| Constructor and Description |
|---|
EmptyDataProvider() |
| Modifier and Type | Method and Description |
|---|---|
static <T> EmptyDataProvider<T> |
getInstance() |
Iterator<T> |
iterator(long first,
long count)
Gets an iterator for the subset of total data
|
IModel<T> |
model(Object object)
Callback used by the consumer of this data provider to wrap objects retrieved from
IDataProvider.iterator(long, long) with a model (usually a detachable one). |
long |
size()
Gets total number of items in the collection represented by the DataProvider
|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitdetachpublic static <T> EmptyDataProvider<T> getInstance()
T - public Iterator<T> iterator(long first, long count)
IDataProvideriterator in interface IDataProvider<T>first - first row of datacount - minimum number of elements to retrievepublic long size()
IDataProvidersize in interface IDataProvider<T>public IModel<T> model(Object object)
IDataProviderIDataProvider.iterator(long, long) with a model (usually a detachable one).model in interface IDataProvider<T>object - the object that needs to be wrappedCopyright © 2006–2018 Apache Software Foundation. All rights reserved.