Modifier and Type | Method and Description |
---|---|
CheckboxGroupDataView<T> |
CheckboxGroup.setItems(InMemoryDataProvider<T> inMemoryDataProvider) |
Modifier and Type | Method and Description |
---|---|
ComboBoxDataView<T> |
ComboBox.setItems(InMemoryDataProvider<T> dataProvider)
Deprecated.
does not work so don't use
|
ComboBoxDataView<T> |
ComboBox.setItems(InMemoryDataProvider<T> inMemoryDataProvider,
SerializableFunction<String,SerializablePredicate<T>> filterConverter)
Sets an in-memory data provider for the combo box to use, taking into
account both in-memory filtering from data provider and combo box's text
filter.
|
Modifier and Type | Method and Description |
---|---|
GridDataView<T> |
Grid.setItems(InMemoryDataProvider<T> inMemoryDataProvider) |
Modifier and Type | Method and Description |
---|---|
ListBoxDataView<ITEM> |
ListBoxBase.setItems(InMemoryDataProvider<ITEM> inMemoryDataProvider)
Sets an in-memory data provider for the ListBox to use
|
Modifier and Type | Method and Description |
---|---|
RadioButtonGroupDataView<T> |
RadioButtonGroup.setItems(InMemoryDataProvider<T> inMemoryDataProvider) |
Modifier and Type | Method and Description |
---|---|
SelectDataView<T> |
Select.setItems(InMemoryDataProvider<T> inMemoryDataProvider) |
Modifier and Type | Class and Description |
---|---|
static class |
DataCommunicator.EmptyDataProvider<T1>
In-memory data provider with no items.
|
class |
ListDataProvider<T>
DataProvider wrapper for Collection s. |
Modifier and Type | Method and Description |
---|---|
static <T> DataProvider<T,String> |
InMemoryDataProviderHelpers.filteringByCaseInsensitiveString(InMemoryDataProvider<T> dataProvider,
ValueProvider<T,String> valueProvider,
SerializableBiPredicate<String,String> predicate,
SerializableSupplier<Locale> localeSupplier)
Wraps a given data provider so that its filter tests the given predicate
with the lower case string provided by the given value provider.
|
static <T,V,Q> DataProvider<T,Q> |
InMemoryDataProviderHelpers.filteringByIgnoreNull(InMemoryDataProvider<T> dataProvider,
ValueProvider<T,V> valueProvider,
SerializableBiPredicate<V,Q> predicate)
Wraps a given data provider so that its filter ignores null items
returned by the given value provider.
|
V |
HasDataView.setItems(InMemoryDataProvider<T> dataProvider)
Sets an in-memory data provider for the component to use
|
Modifier and Type | Class and Description |
---|---|
class |
TreeDataProvider<T>
An in-memory data provider for listing components that display hierarchical
data.
|
Copyright © 2021. All rights reserved.