Uses of Interface
com.vaadin.flow.data.provider.IdentifierProvider
Packages that use IdentifierProvider
Package
Description
-
Uses of IdentifierProvider in com.vaadin.flow.component.checkbox.dataview
Methods in com.vaadin.flow.component.checkbox.dataview with parameters of type IdentifierProviderModifier and TypeMethodDescriptionvoidCheckboxGroupDataView.setIdentifierProvider(IdentifierProvider<T> identifierProvider) voidCheckboxGroupListDataView.setIdentifierProvider(IdentifierProvider<T> identifierProvider) Constructor parameters in com.vaadin.flow.component.checkbox.dataview with type arguments of type IdentifierProviderModifierConstructorDescriptionCheckboxGroupDataView(SerializableSupplier<DataProvider<T, ?>> dataProviderSupplier, CheckboxGroup<T> checkboxGroup, SerializableConsumer<IdentifierProvider<T>> identifierChangedCallback) Constructs a new DataView.CheckboxGroupListDataView(SerializableSupplier<DataProvider<T, ?>> dataProviderSupplier, CheckboxGroup<T> checkboxGroup, SerializableConsumer<IdentifierProvider<T>> identifierChangedCallback, SerializableBiConsumer<SerializablePredicate<T>, SerializableComparator<T>> filterOrSortingChangedCallback) Creates a new in-memory data view for Checkbox Group and verifies the passed data provider is compatible with this data view implementation. -
Uses of IdentifierProvider in com.vaadin.flow.component.combobox.dataview
Methods in com.vaadin.flow.component.combobox.dataview with parameters of type IdentifierProviderModifier and TypeMethodDescriptionvoidComboBoxDataView.setIdentifierProvider(IdentifierProvider<T> identifierProvider) voidComboBoxLazyDataView.setIdentifierProvider(IdentifierProvider<T> identifierProvider) voidComboBoxListDataView.setIdentifierProvider(IdentifierProvider<T> identifierProvider) -
Uses of IdentifierProvider in com.vaadin.flow.component.grid.dataview
Methods in com.vaadin.flow.component.grid.dataview with parameters of type IdentifierProviderModifier and TypeMethodDescriptionvoidGridDataView.setIdentifierProvider(IdentifierProvider<T> identifierProvider) voidGridListDataView.setIdentifierProvider(IdentifierProvider<T> identifierProvider) -
Uses of IdentifierProvider in com.vaadin.flow.component.radiobutton.dataview
Methods in com.vaadin.flow.component.radiobutton.dataview with parameters of type IdentifierProviderModifier and TypeMethodDescriptionvoidRadioButtonGroupDataView.setIdentifierProvider(IdentifierProvider<T> identifierProvider) voidRadioButtonGroupListDataView.setIdentifierProvider(IdentifierProvider<T> identifierProvider) Constructor parameters in com.vaadin.flow.component.radiobutton.dataview with type arguments of type IdentifierProviderModifierConstructorDescriptionRadioButtonGroupDataView(SerializableSupplier<? extends DataProvider<T, ?>> dataProviderSupplier, RadioButtonGroup radioButtonGroup, SerializableConsumer<IdentifierProvider<T>> identifierChangedCallback) Constructs a new DataView.RadioButtonGroupListDataView(SerializableSupplier<? extends DataProvider<T, ?>> dataProviderSupplier, RadioButtonGroup radioButtonGroup, SerializableConsumer<IdentifierProvider<T>> identifierChangedCallback, SerializableBiConsumer<SerializablePredicate<T>, SerializableComparator<T>> filterOrSortingChangedCallback) Creates a new in-memory data view for RadioButtonGroup and verifies the passed data provider is compatible with this data view implementation. -
Uses of IdentifierProvider in com.vaadin.flow.component.select.data
Methods in com.vaadin.flow.component.select.data with parameters of type IdentifierProviderModifier and TypeMethodDescriptionvoidSelectDataView.setIdentifierProvider(IdentifierProvider<T> identifierProvider) voidSelectListDataView.setIdentifierProvider(IdentifierProvider<T> identifierProvider) Constructor parameters in com.vaadin.flow.component.select.data with type arguments of type IdentifierProviderModifierConstructorDescriptionSelectDataView(SerializableSupplier<DataProvider<T, ?>> dataProviderSupplier, Select<T> select, SerializableConsumer<IdentifierProvider<T>> identifierChangedCallback) Constructs a new DataView.SelectListDataView(SerializableSupplier<DataProvider<T, ?>> dataProviderSupplier, Select<T> select, SerializableConsumer<IdentifierProvider<T>> identifierChangedCallback, SerializableBiConsumer<SerializablePredicate<T>, SerializableComparator<T>> filterOrSortingChangedCallback) Creates a new in-memory data view for Select and verifies the passed data provider is compatible with this data view implementation. -
Uses of IdentifierProvider in com.vaadin.flow.data.provider
Methods in com.vaadin.flow.data.provider that return IdentifierProviderModifier and TypeMethodDescriptionprotected IdentifierProvider<T>AbstractDataView.getIdentifierProvider()IdentifierProviderChangeEvent.getIdentifierProvider()Returns the new identifier provider for the component.static <T> IdentifierProvider<T>IdentifierProvider.identity()Returns an identifier provider that always returns its input argument.Methods in com.vaadin.flow.data.provider with parameters of type IdentifierProviderModifier and TypeMethodDescriptionvoidAbstractDataView.setIdentifierProvider(IdentifierProvider<T> identifierProvider) voidDataView.setIdentifierProvider(IdentifierProvider<T> identifierProvider) Sets an identifier provider, which returns an identifier for the given item.Constructors in com.vaadin.flow.data.provider with parameters of type IdentifierProviderModifierConstructorDescriptionIdentifierProviderChangeEvent(C source, IdentifierProvider<T> identifierProvider) Creates a new event using the given source and the new identifier provider.