Uses of Class
com.vaadin.flow.data.provider.ListDataProvider
-
-
Uses of ListDataProvider in com.vaadin.flow.component.checkbox
Methods in com.vaadin.flow.component.checkbox with parameters of type ListDataProvider Modifier and Type Method Description CheckboxGroupListDataView<T>
CheckboxGroup. setItems(ListDataProvider<T> dataProvider)
-
Uses of ListDataProvider in com.vaadin.flow.component.combobox
Methods in com.vaadin.flow.component.combobox with parameters of type ListDataProvider Modifier and Type Method Description void
ComboBoxBase. setDataProvider(ComboBox.ItemFilter<TItem> itemFilter, ListDataProvider<TItem> listDataProvider)
Deprecated.use insteadComboBoxBase.setItems(ComboBox.ItemFilter, ListDataProvider)
which provide access toComboBoxListDataView
void
ComboBoxBase. setDataProvider(ListDataProvider<TItem> listDataProvider)
Deprecated.use instead one of thesetItems
methods which provide access toComboBoxListDataView
ComboBoxListDataView<TItem>
ComboBoxBase. 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.ComboBoxListDataView<TItem>
ComboBoxBase. setItems(ListDataProvider<TItem> dataProvider)
-
Uses of ListDataProvider in com.vaadin.flow.component.grid
Methods in com.vaadin.flow.component.grid with parameters of type ListDataProvider Modifier and Type Method Description GridListDataView<T>
Grid. setItems(ListDataProvider<T> dataProvider)
-
Uses of ListDataProvider in com.vaadin.flow.component.listbox
Methods in com.vaadin.flow.component.listbox with parameters of type ListDataProvider Modifier and Type Method Description ListBoxListDataView<ITEM>
ListBoxBase. 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
Methods in com.vaadin.flow.component.radiobutton with parameters of type ListDataProvider Modifier and Type Method Description RadioButtonGroupListDataView<T>
RadioButtonGroup. setItems(ListDataProvider<T> dataProvider)
-
Uses of ListDataProvider in com.vaadin.flow.component.select
Methods in com.vaadin.flow.component.select with parameters of type ListDataProvider Modifier and Type Method Description SelectListDataView<T>
Select. setItems(ListDataProvider<T> dataProvider)
-
Uses of ListDataProvider in com.vaadin.flow.component.treegrid
Methods in com.vaadin.flow.component.treegrid with parameters of type ListDataProvider Modifier and Type Method Description GridListDataView<T>
TreeGrid. setItems(ListDataProvider<T> dataProvider)
-
Uses of ListDataProvider in com.vaadin.flow.data.provider
Subclasses of ListDataProvider in com.vaadin.flow.data.provider Modifier and Type Class Description static class
DataCommunicator.EmptyDataProvider<T1>
In-memory data provider with no items.Methods in com.vaadin.flow.data.provider that return ListDataProvider Modifier and Type Method Description static <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.Methods in com.vaadin.flow.data.provider with parameters of type ListDataProvider Modifier and Type Method Description V
HasListDataView. setItems(ListDataProvider<T> dataProvider)
Sets a ListDataProvider for the component to use and returns aListDataView
that provides information and allows operations on the items.
-