Uses of Class
com.vaadin.flow.data.provider.ListDataProvider
Package
Description
-
Uses of ListDataProvider in com.vaadin.flow.component.checkbox
-
Uses of ListDataProvider in com.vaadin.flow.component.combobox
Modifier and TypeMethodDescriptionComboBoxBase.setItems
(ComboBox.ItemFilter<TItem> itemFilter, ListDataProvider<TItem> listDataProvider) Sets a ListDataProvider for this combo box and a filtering function for defining which items are displayed when user types into the combo box.ComboBoxBase.setItems
(ListDataProvider<TItem> dataProvider) -
Uses of ListDataProvider in com.vaadin.flow.component.grid
ModifierConstructorDescriptionGrid
(ListDataProvider<T> dataProvider) Creates a new grid using the givenListDataProvider
. -
Uses of ListDataProvider in com.vaadin.flow.component.listbox
Modifier and TypeMethodDescriptionListBoxBase.setItems
(ListDataProvider<ITEM> listDataProvider) Sets a ListDataProvider for the ListBox to use and returns aListDataView
that provides information and allows operations on the items. -
Uses of ListDataProvider in com.vaadin.flow.component.radiobutton
-
Uses of ListDataProvider in com.vaadin.flow.component.select
-
Uses of ListDataProvider in com.vaadin.flow.component.treegrid
Modifier and TypeMethodDescriptionTreeGrid.setItems
(ListDataProvider<T> dataProvider) Deprecated. -
Uses of ListDataProvider in com.vaadin.flow.data.provider
Modifier and TypeClassDescriptionstatic final class
In-memory data provider with no items.Modifier and TypeMethodDescriptionstatic <T> ListDataProvider<T>
DataProvider.fromStream
(Stream<T> items) Creates a new data provider from the given stream.protected ListDataProvider<T>
AbstractListDataView.getDataProvider()
static <T> ListDataProvider<T>
DataProvider.ofCollection
(Collection<T> items) Creates a new data provider backed by a collection.static <T> ListDataProvider<T>
DataProvider.ofItems
(T... items) Creates a new data provider from the given items.Modifier and TypeMethodDescriptionHasListDataView.setItems
(ListDataProvider<T> dataProvider) Sets a ListDataProvider for the component to use and returns aListDataView
that provides information and allows operations on the items.
TreeGrid.setDataProvider(HierarchicalDataProvider)
,HasHierarchicalDataProvider.setItems(Collection, ValueProvider)
,HasHierarchicalDataProvider.setItems(Stream, ValueProvider)
orHasHierarchicalDataProvider.setTreeData(TreeData)
instead.