Uses of Class
com.vaadin.flow.data.provider.Query
-
Packages that use Query Package Description com.vaadin.flow.data.provider com.vaadin.flow.data.provider.hierarchy -
-
Uses of Query in com.vaadin.flow.data.provider
Methods in com.vaadin.flow.data.provider that return Query Modifier and Type Method Description QueryDataCommunicator. buildQuery(int offset, int limit)Generate a data query with component sorting and filtering.static QueryDataViewUtils. getQuery(Component component)Generates a data query with component's in-memory filter and sort comparator.static QueryDataViewUtils. getQuery(Component component, boolean withSorting)Generates a data query with component's in-memory filter and sort comparator, which is optionally included ifwithSortingis set totrue.Methods in com.vaadin.flow.data.provider with parameters of type Query Modifier and Type Method Description static <T,C,F>
FFilterUtils. convertFilter(SerializableFunction<C,F> filterConverter, Query<T,C> query)Gets the filter converted from a query filter by thefilterConverter.intCallbackDataProvider.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 givenquery.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 FConfigurableFilterDataProviderWrapper. getFilter(Query<T,Q> query)protected abstract MDataProviderWrapper. getFilter(Query<T,F> query)Gets the filter that should be used in the modified Query.intAbstractBackEndDataProvider. size(Query<T,F> query)intDataProvider. size(Query<T,F> query)Gets the amount of data in this DataProvider.intDataProviderWrapper. size(Query<T,F> t)intListDataProvider. size(Query<T,SerializablePredicate<T>> query)protected abstract intAbstractBackEndDataProvider. sizeInBackEnd(Query<T,F> query)Counts the number of items available in the back end.protected intCallbackDataProvider. sizeInBackEnd(Query<T,F> query) -
Uses of Query in com.vaadin.flow.data.provider.hierarchy
Subclasses of Query in com.vaadin.flow.data.provider.hierarchy Modifier and Type Class Description classHierarchicalQuery<T,F>Immutable hierarchical query object used to request data from a backend.Methods in com.vaadin.flow.data.provider.hierarchy with parameters of type Query Modifier and Type Method Description default Stream<T>HierarchicalDataProvider. fetch(Query<T,F> query)Fetches data from this HierarchicalDataProvider using givenquery.default intHierarchicalDataProvider. size(Query<T,F> query)Get the number of immediate child data items for the parent item returned by a given query.
-