| Package | Description |
|---|---|
| com.vaadin.flow.data.provider |
| Modifier and Type | Method and Description |
|---|---|
int |
CallbackDataProvider.CountCallback.count(Query<T,F> query)
Counts the number of available items based on a query.
|
Stream<T> |
DataProvider.fetch(Query<T,F> query)
Fetches data from this DataProvider using given
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> |
DataProviderWrapper.fetch(Query<T,F> t) |
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 abstract M |
DataProviderWrapper.getFilter(Query<T,F> query)
Gets the filter that should be used in the modified Query.
|
protected F |
ConfigurableFilterDataProviderWrapper.getFilter(Query<T,Q> query) |
int |
DataProvider.size(Query<T,F> query)
Gets the amount of data in this DataProvider.
|
int |
AbstractBackEndDataProvider.size(Query<T,F> query) |
int |
DataProviderWrapper.size(Query<T,F> t) |
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) |
Copyright © 2000–2019 Vaadin Ltd. All rights reserved.