int |
CallbackDataProvider.CountCallback.count(Query<T,F> query) |
Counts the number of available items based on a query.
|
Stream<T> |
AbstractBackEndDataProvider.fetch(Query<T,F> query) |
|
Stream<T> |
CallbackDataProvider.FetchCallback.fetch(Query<T,F> query) |
Fetches a stream of items based on a query.
|
Stream<T> |
DataProvider.fetch(Query<T,F> query) |
Fetches data from this DataProvider using given query .
|
Stream<T> |
DataProviderWrapper.fetch(Query<T,F> t) |
|
default Stream<T> |
HierarchicalDataProvider.fetch(Query<T,F> query) |
Fetches data from this HierarchicalDataProvider using given
query .
|
Stream<T> |
ListDataProvider.fetch(Query<T,SerializablePredicate<T>> query) |
|
protected abstract Stream<T> |
AbstractBackEndDataProvider.fetchFromBackEnd(Query<T,F> query) |
Fetches data from the back end using the given query.
|
Stream<T> |
CallbackDataProvider.fetchFromBackEnd(Query<T,F> query) |
|
protected F |
ConfigurableFilterDataProviderWrapper.getFilter(Query<T,Q> query) |
|
protected abstract M |
DataProviderWrapper.getFilter(Query<T,F> query) |
Gets the filter that should be used in the modified Query.
|
int |
AbstractBackEndDataProvider.size(Query<T,F> query) |
|
int |
DataProvider.size(Query<T,F> query) |
Gets the amount of data in this DataProvider.
|
int |
DataProviderWrapper.size(Query<T,F> t) |
|
default int |
HierarchicalDataProvider.size(Query<T,F> query) |
Get the number of immediate child data items for the parent item returned
by a given query.
|
int |
ListDataProvider.size(Query<T,SerializablePredicate<T>> query) |
|
protected abstract int |
AbstractBackEndDataProvider.sizeInBackEnd(Query<T,F> query) |
Counts the number of items available in the back end.
|
protected int |
CallbackDataProvider.sizeInBackEnd(Query<T,F> query) |
|