- AbstractBackEndDataProvider<T,F> - Class in com.vaadin.flow.data.provider
-
Abstract base class for implementing back end data providers.
- AbstractBackEndDataProvider() - Constructor for class com.vaadin.flow.data.provider.AbstractBackEndDataProvider
-
- AbstractBackEndHierarchicalDataProvider<T,F> - Class in com.vaadin.flow.data.provider.hierarchy
-
- AbstractBackEndHierarchicalDataProvider() - Constructor for class com.vaadin.flow.data.provider.hierarchy.AbstractBackEndHierarchicalDataProvider
-
- AbstractBeanPropertyDefinition<T,V> - Class in com.vaadin.flow.data.binder
-
Abstract base class for PropertyDefinition implementations for beans.
- AbstractBeanPropertyDefinition(BeanPropertySet<T>, Class<?>, PropertyDescriptor) - Constructor for class com.vaadin.flow.data.binder.AbstractBeanPropertyDefinition
-
Constructor for setting the immutable descriptor, property set and
property holder type used by this instance.
- AbstractComponentDataGenerator<T> - Class in com.vaadin.flow.data.provider
-
Abstract class used as base for DataGenerators that need to manage the
lifecycle of components, according to what items are requested or destroyed.
- AbstractComponentDataGenerator() - Constructor for class com.vaadin.flow.data.provider.AbstractComponentDataGenerator
-
- AbstractDataProvider<T,F> - Class in com.vaadin.flow.data.provider
-
Abstract data provider implementation which takes care of refreshing data
from the underlying data provider.
- AbstractDataProvider() - Constructor for class com.vaadin.flow.data.provider.AbstractDataProvider
-
- AbstractDataView<T> - Class in com.vaadin.flow.data.provider
-
Abstract data view implementation which handles parts that apply for any type
of data.
- AbstractDataView(SerializableSupplier<? extends DataProvider<T, ?>>, Component) - Constructor for class com.vaadin.flow.data.provider.AbstractDataView
-
Creates a new instance of
AbstractDataView
subclass and verifies
the passed data provider is compatible with this data view
implementation.
- AbstractHierarchicalDataProvider<T,F> - Class in com.vaadin.flow.data.provider.hierarchy
-
Abstract hierarchical data provider implementation which takes care of item
refreshes and associated events.
- AbstractHierarchicalDataProvider() - Constructor for class com.vaadin.flow.data.provider.hierarchy.AbstractHierarchicalDataProvider
-
- AbstractLazyDataView<T> - Class in com.vaadin.flow.data.provider
-
Abstract lazy data view implementation which handles the interaction with a
data communicator.
- AbstractLazyDataView(DataCommunicator<T>, Component) - Constructor for class com.vaadin.flow.data.provider.AbstractLazyDataView
-
Creates a new instance and verifies the passed data provider is
compatible with this data view implementation.
- AbstractListDataView<T> - Class in com.vaadin.flow.data.provider
-
Abstract list data view implementation which provides common methods for
fetching, filtering and sorting in-memory data to all
ListDataView
subclasses.
- AbstractListDataView(SerializableSupplier<? extends DataProvider<T, ?>>, Component, SerializableBiConsumer<SerializablePredicate<T>, SerializableComparator<T>>) - Constructor for class com.vaadin.flow.data.provider.AbstractListDataView
-
Creates a new instance of
AbstractListDataView
subclass and
verifies the passed data provider is compatible with this data view
implementation.
- AbstractStringToNumberConverter<T extends Number> - Class in com.vaadin.flow.data.converter
-
A converter that converts from the number type T to
String
and back.
- AbstractStringToNumberConverter(T, ErrorMessageProvider) - Constructor for class com.vaadin.flow.data.converter.AbstractStringToNumberConverter
-
Creates a new converter instance with the given presentation value for
empty string and error message provider.
- AbstractStringToNumberConverter(T, String) - Constructor for class com.vaadin.flow.data.converter.AbstractStringToNumberConverter
-
Creates a new converter instance with the given presentation value for
empty string and error message.
- AbstractValidator<T> - Class in com.vaadin.flow.data.validator
-
An abstract base class for typed validators.
- AbstractValidator(String) - Constructor for class com.vaadin.flow.data.validator.AbstractValidator
-
Constructs a validator with the given error message.
- accept(BEAN, FIELDVALUE) - Method in interface com.vaadin.flow.data.binder.Setter
-
Save value to the bean property.
- addComponents(T, Component...) - Method in interface com.vaadin.flow.data.binder.HasItemComponents
-
Adds the components after the given item.
- addDataGenerator(DataGenerator<T>) - Method in class com.vaadin.flow.data.provider.CompositeDataGenerator
-
- addDataGenerator(DataGenerator<T>) - Method in interface com.vaadin.flow.data.provider.HasDataGenerators
-
Adds the given data generator.
- addDataProviderListener(DataProviderListener<T>) - Method in class com.vaadin.flow.data.provider.AbstractDataProvider
-
- addDataProviderListener(DataProviderListener<T>) - Method in interface com.vaadin.flow.data.provider.DataProvider
-
Adds a data provider listener.
- addDataProviderListener(DataProviderListener<T>) - Method in class com.vaadin.flow.data.provider.DataProviderWrapper
-
- addFilter(SerializablePredicate<T>) - Method in class com.vaadin.flow.data.provider.AbstractListDataView
-
- addFilter(SerializablePredicate<T>) - Method in interface com.vaadin.flow.data.provider.InMemoryDataProvider
-
Adds a filter to be applied to all queries.
- addFilter(ValueProvider<T, V>, SerializablePredicate<V>) - Method in interface com.vaadin.flow.data.provider.InMemoryDataProvider
-
Adds a filter for an item property.
- addFilter(SerializablePredicate<T>) - Method in interface com.vaadin.flow.data.provider.ListDataView
-
Adds a filter to be applied to all queries.
- addFilterByValue(ValueProvider<T, V>, V) - Method in interface com.vaadin.flow.data.provider.InMemoryDataProvider
-
Adds a filter that requires an item property to have a specific value.
- addItem(T) - Method in class com.vaadin.flow.data.provider.AbstractListDataView
-
- addItem(T, T) - Method in class com.vaadin.flow.data.provider.hierarchy.TreeData
-
Adds a data item as a child of parent
.
- addItem(T) - Method in interface com.vaadin.flow.data.provider.ListDataView
-
Adds an item to the data list if it is not already present.
- addItemAfter(T, T) - Method in class com.vaadin.flow.data.provider.AbstractListDataView
-
- addItemAfter(T, T) - Method in interface com.vaadin.flow.data.provider.ListDataView
-
Adds an item after the given target item.
- addItemBefore(T, T) - Method in class com.vaadin.flow.data.provider.AbstractListDataView
-
- addItemBefore(T, T) - Method in interface com.vaadin.flow.data.provider.ListDataView
-
Adds an item before the given target item.
- addItemCountChangeListener(ComponentEventListener<ItemCountChangeEvent<?>>) - Method in class com.vaadin.flow.data.provider.AbstractDataView
-
- addItemCountChangeListener(ComponentEventListener<ItemCountChangeEvent<?>>) - Method in interface com.vaadin.flow.data.provider.DataView
-
Add an item count change listener that is fired when the item count
changes.
- addItems(Collection<T>) - Method in class com.vaadin.flow.data.provider.AbstractListDataView
-
- addItems(T, T...) - Method in class com.vaadin.flow.data.provider.hierarchy.TreeData
-
Adds a list of data items as children of parent
.
- addItems(T, Collection<T>) - Method in class com.vaadin.flow.data.provider.hierarchy.TreeData
-
Adds a list of data items as children of parent
.
- addItems(T, Stream<T>) - Method in class com.vaadin.flow.data.provider.hierarchy.TreeData
-
Adds data items contained in a stream as children of parent
.
- addItems(Collection<T>, ValueProvider<T, Collection<T>>) - Method in class com.vaadin.flow.data.provider.hierarchy.TreeData
-
Adds the given items as root items and uses the given value provider to
recursively populate children of the root items.
- addItems(Stream<T>, ValueProvider<T, Stream<T>>) - Method in class com.vaadin.flow.data.provider.hierarchy.TreeData
-
Adds the given items as root items and uses the given value provider to
recursively populate children of the root items.
- addItems(Collection<T>) - Method in interface com.vaadin.flow.data.provider.ListDataView
-
Adds multiple items to the data list.
- addItemsAfter(Collection<T>, T) - Method in class com.vaadin.flow.data.provider.AbstractListDataView
-
- addItemsAfter(Collection<T>, T) - Method in interface com.vaadin.flow.data.provider.ListDataView
-
Adds multiple items after the given target item.
- addItemsBefore(Collection<T>, T) - Method in class com.vaadin.flow.data.provider.AbstractListDataView
-
- addItemsBefore(Collection<T>, T) - Method in interface com.vaadin.flow.data.provider.ListDataView
-
Adds multiple items before the given target item.
- addListener(Class<T>, SerializableConsumer<T>) - Method in class com.vaadin.flow.data.binder.Binder
-
Adds a listener to the binder.
- addListener(Class<E>, SerializableConsumer<E>) - Method in class com.vaadin.flow.data.provider.AbstractDataProvider
-
Registers a new listener with the specified activation method to listen
events generated by this component.
- addRootItems(T...) - Method in class com.vaadin.flow.data.provider.hierarchy.TreeData
-
Adds the items as root items to this structure.
- addRootItems(Collection<T>) - Method in class com.vaadin.flow.data.provider.hierarchy.TreeData
-
Adds the items of the given collection as root items to this structure.
- addRootItems(Stream<T>) - Method in class com.vaadin.flow.data.provider.hierarchy.TreeData
-
Adds the items of the given stream as root items to this structure.
- addSelectionListener(MultiSelectionListener<C, T>) - Method in interface com.vaadin.flow.data.selection.MultiSelect
-
Adds a selection listener that will be called when the selection is
changed either by the user or programmatically.
- addSelectionListener(SelectionListener<C, T>) - Method in interface com.vaadin.flow.data.selection.SelectionModel
-
Adds a generic listener to this selection model, accepting both single
and multiselection events.
- addSortComparator(SerializableComparator<T>) - Method in class com.vaadin.flow.data.provider.AbstractListDataView
-
- addSortComparator(SerializableComparator<T>) - Method in interface com.vaadin.flow.data.provider.InMemoryDataProvider
-
Adds a comparator to the default sorting for this data provider.
- addSortComparator(SerializableComparator<T>) - Method in interface com.vaadin.flow.data.provider.ListDataView
-
Adds a comparator to the data default sorting.
- addSortListener(ComponentEventListener<SortEvent<T, S>>) - Method in interface com.vaadin.flow.data.event.SortEvent.SortNotifier
-
Adds a sort order change listener that gets notified when the sort
order changes.
- addSortOrder(ValueProvider<T, V1>, SortDirection) - Method in class com.vaadin.flow.data.provider.AbstractListDataView
-
- addSortOrder(ValueProvider<T, V>, SortDirection) - Method in interface com.vaadin.flow.data.provider.InMemoryDataProvider
-
Adds a property and direction to the default sorting for this data
provider.
- addSortOrder(ValueProvider<T, V1>, SortDirection) - Method in interface com.vaadin.flow.data.provider.ListDataView
-
Adds a property and direction to the default sorting.
- addStatusChangeListener(StatusChangeListener) - Method in class com.vaadin.flow.data.binder.Binder
-
Adds status change listener to the binder.
- addValidationStatusChangeListener(ValidationStatusChangeListener<V>) - Method in interface com.vaadin.flow.data.binder.HasValidator
-
Enables the implementing components to notify changes in their validation
status to the observers.
- addValueChangeListener(HasValue.ValueChangeListener<? super HasValue.ValueChangeEvent<?>>) - Method in class com.vaadin.flow.data.binder.Binder
-
Adds field value change listener to all the fields in the binder.
- addValueChangeListener(HasValue.ValueChangeListener<? super HasValue.ValueChangeEvent<V>>) - Method in class com.vaadin.flow.data.binder.ReadOnlyHasValue
-
- alwaysPass() - Static method in interface com.vaadin.flow.data.binder.Validator
-
Returns a validator that passes any value.
- apply(ValueContext) - Method in interface com.vaadin.flow.data.binder.ErrorMessageProvider
-
Returns a generated error message for given ValueContext
.
- apply(T, ValueContext) - Method in interface com.vaadin.flow.data.binder.Validator
-
Validates the given value.
- apply(Object, ValueContext) - Method in class com.vaadin.flow.data.validator.BeanValidator
-
Validates the given value as if it were the value of the bean property
configured for this validator.
- apply(T, ValueContext) - Method in class com.vaadin.flow.data.validator.RangeValidator
-
Returns Result.ok
if the value is within the specified bounds,
Result.error
otherwise.
- apply(String, ValueContext) - Method in class com.vaadin.flow.data.validator.RegexpValidator
-
- apply(String, ValueContext) - Method in class com.vaadin.flow.data.validator.StringLengthValidator
-
- applyChangeTimeout(ValueChangeMode, int, DomListenerRegistration) - Static method in enum com.vaadin.flow.data.value.ValueChangeMode
-
Applies the value change timeout of the given mode on the registration of
the DOM event listener that synchronizes.
- ArrayUpdater - Interface in com.vaadin.flow.data.provider
-
Array update strategy aware class.
- ArrayUpdater.Update - Interface in com.vaadin.flow.data.provider
-
Array updater strategy.
- asc(String) - Static method in class com.vaadin.flow.data.provider.QuerySortOrder
-
Creates a new query sort builder with given sorting using ascending sort
direction.
- asRequired(String) - Method in interface com.vaadin.flow.data.binder.Binder.BindingBuilder
-
Sets the field to be required.
- asRequired() - Method in interface com.vaadin.flow.data.binder.Binder.BindingBuilder
-
Sets the field to be required.
- asRequired(ErrorMessageProvider) - Method in interface com.vaadin.flow.data.binder.Binder.BindingBuilder
-
Sets the field to be required.
- asRequired(Validator<TARGET>) - Method in interface com.vaadin.flow.data.binder.Binder.BindingBuilder
-
Sets the field to be required and delegates the required check to a
custom validator.
- asRequired(ErrorMessageProvider) - Method in class com.vaadin.flow.data.binder.Binder.BindingBuilderImpl
-
- asRequired(Validator<TARGET>) - Method in class com.vaadin.flow.data.binder.Binder.BindingBuilderImpl
-
- BackEndDataProvider<T,F> - Interface in com.vaadin.flow.data.provider
-
A data provider that lazy loads items from a back end.
- BackEndHierarchicalDataProvider<T,F> - Interface in com.vaadin.flow.data.provider.hierarchy
-
A data provider that lazy loads items from a back end containing hierarchical
data.
- BeanDataGenerator<T> - Class in com.vaadin.flow.data.provider
-
A
DataGenerator
that sends all the fields of the objects in the model
to the client, using the field names as property names.
- BeanDataGenerator() - Constructor for class com.vaadin.flow.data.provider.BeanDataGenerator
-
- BeanPropertySet<T> - Class in com.vaadin.flow.data.binder
-
A
PropertySet
that uses reflection to find bean properties.
- BeanPropertySet.NestedBeanPropertyDefinition<T,V> - Class in com.vaadin.flow.data.binder
-
Contains properties for a bean type which is nested in another
definition.
- BeanValidationBinder<BEAN> - Class in com.vaadin.flow.data.binder
-
Binder that uses reflection based on the provided bean type to resolve bean
properties.
- BeanValidationBinder(Class<BEAN>) - Constructor for class com.vaadin.flow.data.binder.BeanValidationBinder
-
Creates a new binder that uses reflection based on the provided bean type
to resolve bean properties.
- BeanValidationBinder(Class<BEAN>, boolean) - Constructor for class com.vaadin.flow.data.binder.BeanValidationBinder
-
Creates a new binder that uses reflection based on the provided bean type
to resolve bean properties.
- BeanValidator - Class in com.vaadin.flow.data.validator
-
A Validator
using the JSR-303 (javax.validation) annotation-based
bean validation mechanism.
- BeanValidator(Class<?>, String) - Constructor for class com.vaadin.flow.data.validator.BeanValidator
-
Creates a new JSR-303 BeanValidator
that validates values of the
specified property.
- BigDecimalRangeValidator - Class in com.vaadin.flow.data.validator
-
Validator for validating that an
BigDecimal
is inside a given range.
- BigDecimalRangeValidator(String, BigDecimal, BigDecimal) - Constructor for class com.vaadin.flow.data.validator.BigDecimalRangeValidator
-
Creates a validator for checking that an BigDecimal is within a given
range.
- BigIntegerRangeValidator - Class in com.vaadin.flow.data.validator
-
Validator for validating that an
BigInteger
is inside a given range.
- BigIntegerRangeValidator(String, BigInteger, BigInteger) - Constructor for class com.vaadin.flow.data.validator.BigIntegerRangeValidator
-
Creates a validator for checking that an BigInteger is within a given
range.
- bind(HasValue<?, FIELDVALUE>, ValueProvider<BEAN, FIELDVALUE>, Setter<BEAN, FIELDVALUE>) - Method in class com.vaadin.flow.data.binder.Binder
-
Binds a field to a bean property represented by the given getter and
setter pair.
- bind(HasValue<?, FIELDVALUE>, String) - Method in class com.vaadin.flow.data.binder.Binder
-
Binds the given field to the property with the given name.
- bind(ValueProvider<BEAN, TARGET>, Setter<BEAN, TARGET>) - Method in interface com.vaadin.flow.data.binder.Binder.BindingBuilder
-
Completes this binding using the given getter and setter functions
representing a backing bean property.
- bind(String) - Method in interface com.vaadin.flow.data.binder.Binder.BindingBuilder
-
Completes this binding by connecting the field to the property with
the given name.
- bind(ValueProvider<BEAN, TARGET>, Setter<BEAN, TARGET>) - Method in class com.vaadin.flow.data.binder.Binder.BindingBuilderImpl
-
- bind(String) - Method in class com.vaadin.flow.data.binder.Binder.BindingBuilderImpl
-
- Binder<BEAN> - Class in com.vaadin.flow.data.binder
-
Connects one or more Field
components to properties of a backing data
type such as a bean type.
- Binder(PropertySet<BEAN>) - Constructor for class com.vaadin.flow.data.binder.Binder
-
- Binder(Class<BEAN>) - Constructor for class com.vaadin.flow.data.binder.Binder
-
Creates a new binder that uses reflection based on the provided bean type
to resolve bean properties.
- Binder() - Constructor for class com.vaadin.flow.data.binder.Binder
-
Creates a new binder without support for creating bindings based on
property names.
- Binder(Class<BEAN>, boolean) - Constructor for class com.vaadin.flow.data.binder.Binder
-
Creates a new binder that uses reflection based on the provided bean type
to resolve bean properties.
- Binder.Binding<BEAN,TARGET> - Interface in com.vaadin.flow.data.binder
-
Represents the binding between a field and a data property.
- Binder.BindingBuilder<BEAN,TARGET> - Interface in com.vaadin.flow.data.binder
-
Creates a binding between a field and a data property.
- Binder.BindingBuilderImpl<BEAN,FIELDVALUE,TARGET> - Class in com.vaadin.flow.data.binder
-
An internal implementation of BindingBuilder
.
- Binder.BindingImpl<BEAN,FIELDVALUE,TARGET> - Class in com.vaadin.flow.data.binder
-
An internal implementation of Binding
.
- BinderValidationErrorHandler - Interface in com.vaadin.flow.data.binder
-
- BinderValidationStatus<BEAN> - Class in com.vaadin.flow.data.binder
-
Binder validation status change.
- BinderValidationStatus(Binder<BEAN>, List<BindingValidationStatus<?>>, List<ValidationResult>) - Constructor for class com.vaadin.flow.data.binder.BinderValidationStatus
-
Creates a new binder validation status for the given binder and
validation results.
- BinderValidationStatusHandler<BEAN> - Interface in com.vaadin.flow.data.binder
-
- BindingBuilderImpl(Binder<BEAN>, HasValue<?, FIELDVALUE>, Converter<FIELDVALUE, TARGET>, BindingValidationStatusHandler) - Constructor for class com.vaadin.flow.data.binder.Binder.BindingBuilderImpl
-
Creates a new binding builder associated with the given field.
- BindingException - Exception in com.vaadin.flow.data.binder
-
- BindingException(String) - Constructor for exception com.vaadin.flow.data.binder.BindingException
-
Constructs a new binding exception with the specified detail message.
- BindingException(String, Throwable) - Constructor for exception com.vaadin.flow.data.binder.BindingException
-
Constructs a new binding exception with the specified detail message and
cause.
- BindingException(Throwable) - Constructor for exception com.vaadin.flow.data.binder.BindingException
-
Constructs a new binding exception with the specified cause and a detail
message of (cause==null ? null : cause.toString())
(which
typically contains the class and detail message of cause
).
- BindingExceptionHandler - Interface in com.vaadin.flow.data.binder
-
Handles an
Exception
which may be thrown inside
Binder.Binding
logic
to be able to identify the originator of the exception (the original
Exception
instance usually doesn't contain any information which
HasValue
object is the source of the exception).
- BindingImpl(Binder.BindingBuilderImpl<BEAN, FIELDVALUE, TARGET>, ValueProvider<BEAN, TARGET>, Setter<BEAN, TARGET>) - Constructor for class com.vaadin.flow.data.binder.Binder.BindingImpl
-
- BindingValidationStatus<TARGET> - Class in com.vaadin.flow.data.binder
-
Represents the status of field validation.
- BindingValidationStatus(Result<TARGET>, Binder.Binding<?, TARGET>) - Constructor for class com.vaadin.flow.data.binder.BindingValidationStatus
-
Creates a new status change event.
- BindingValidationStatus.Status - Enum in com.vaadin.flow.data.binder
-
Status of the validation.
- BindingValidationStatusHandler - Interface in com.vaadin.flow.data.binder
-
- bindInstanceFields(Object) - Method in class com.vaadin.flow.data.binder.Binder
-
Binds member fields found in the given object.
- bindReadOnly(ValueProvider<BEAN, TARGET>) - Method in interface com.vaadin.flow.data.binder.Binder.BindingBuilder
-
Completes this binding using the given getter function representing a
backing bean property.
- bindReadOnly(String) - Method in interface com.vaadin.flow.data.binder.Binder.BindingBuilder
-
Completes this binding by connecting the field to the property with
the given name.
- bindReadOnly(ValueProvider<BEAN, TARGET>) - Method in class com.vaadin.flow.data.binder.Binder.BindingBuilderImpl
-
- bindReadOnly(String) - Method in class com.vaadin.flow.data.binder.Binder.BindingBuilderImpl
-
- bindReadOnly(HasValue<?, FIELDVALUE>, ValueProvider<BEAN, FIELDVALUE>) - Method in class com.vaadin.flow.data.binder.Binder
-
Binds a field to a bean property represented by the given getter.
- bindReadOnly(HasValue<?, FIELDVALUE>, String) - Method in class com.vaadin.flow.data.binder.Binder
-
Binds the given field to the property with the given name.
- build() - Method in class com.vaadin.flow.data.provider.SortOrderBuilder
-
Returns an unmodifiable copy of the list of current sort orders in this
sort builder.
- buildQuery(int, int) - Method in class com.vaadin.flow.data.provider.DataCommunicator
-
Generate a data query with component sorting and filtering.
- ByteRangeValidator - Class in com.vaadin.flow.data.validator
-
Validator for validating that an
Byte
is inside a given range.
- ByteRangeValidator(String, Byte, Byte) - Constructor for class com.vaadin.flow.data.validator.ByteRangeValidator
-
Creates a validator for checking that an Byte is within a given range.
- CallbackDataProvider<T,F> - Class in com.vaadin.flow.data.provider
-
Data provider that uses one callback for fetching items from a back end and
another callback for counting the number of available items.
- CallbackDataProvider(CallbackDataProvider.FetchCallback<T, F>, CallbackDataProvider.CountCallback<T, F>) - Constructor for class com.vaadin.flow.data.provider.CallbackDataProvider
-
Constructs a new DataProvider to request data using callbacks for
fetching and counting items in the back end.
- CallbackDataProvider(CallbackDataProvider.FetchCallback<T, F>, CallbackDataProvider.CountCallback<T, F>, ValueProvider<T, Object>) - Constructor for class com.vaadin.flow.data.provider.CallbackDataProvider
-
Constructs a new DataProvider to request data using callbacks for
fetching and counting items in the back end.
- CallbackDataProvider.CountCallback<T,F> - Interface in com.vaadin.flow.data.provider
-
Callback interface for counting the number of items in a backend based on
a query.
- CallbackDataProvider.FetchCallback<T,F> - Interface in com.vaadin.flow.data.provider
-
Callback interface for fetching a stream of items from a backend based on
a query.
- chain(RequiredFieldConfigurator) - Method in interface com.vaadin.flow.data.binder.RequiredFieldConfigurator
-
Returns a configurator that chains together this configurator with the
given configurator.
- chain(Converter<MODEL, T>) - Method in interface com.vaadin.flow.data.converter.Converter
-
Returns a converter that chains together this converter with the given
type-compatible converter.
- checkUnbound() - Method in class com.vaadin.flow.data.binder.Binder.BindingBuilderImpl
-
Throws if this binding is already completed and cannot be modified
anymore.
- clear(int, int) - Method in interface com.vaadin.flow.data.provider.ArrayUpdater.Update
-
Clears length
elements in array from the start
position.
- clear(int, int, String) - Method in interface com.vaadin.flow.data.provider.hierarchy.HierarchicalArrayUpdater.HierarchicalUpdate
-
Clears length
elements in array from the start
position.
- clear() - Method in class com.vaadin.flow.data.provider.hierarchy.TreeData
-
Clear all items from this structure.
- clearError(HasValue<?, ?>) - Method in class com.vaadin.flow.data.binder.Binder
-
Clears the error condition of the given field, if any.
- clearError(HasValue<?, ?>) - Method in interface com.vaadin.flow.data.binder.BinderValidationErrorHandler
-
- clearError(HasValue<?, ?>) - Method in class com.vaadin.flow.data.binder.DefaultBinderValidationErrorHandler
-
Clears the error condition of the given field, if any.
- clearErrorTheme(HasValue<?, ?>) - Method in class com.vaadin.flow.data.binder.DefaultBinderValidationErrorHandler
-
Clears error theme for the field
.
- clearFilters() - Method in interface com.vaadin.flow.data.provider.InMemoryDataProvider
-
Removes any filter that has been set or added previously.
- collapse(T) - Method in class com.vaadin.flow.data.provider.hierarchy.HierarchicalDataCommunicator
-
Collapses the given item and removes its sub-hierarchy.
- collapse(T, boolean) - Method in class com.vaadin.flow.data.provider.hierarchy.HierarchicalDataCommunicator
-
Collapses the given item and removes its sub-hierarchy.
- collapse(Collection<T>) - Method in class com.vaadin.flow.data.provider.hierarchy.HierarchicalDataCommunicator
-
Collapses the given items and removes its sub-hierarchy.
- collapse(T) - Method in class com.vaadin.flow.data.provider.hierarchy.HierarchyMapper
-
Collapses the given item.
- collapse(T, Integer) - Method in class com.vaadin.flow.data.provider.hierarchy.HierarchyMapper
-
Collapses the given item.
- com.vaadin.flow.data.binder - package com.vaadin.flow.data.binder
-
- com.vaadin.flow.data.converter - package com.vaadin.flow.data.converter
-
- com.vaadin.flow.data.event - package com.vaadin.flow.data.event
-
- com.vaadin.flow.data.provider - package com.vaadin.flow.data.provider
-
- com.vaadin.flow.data.provider.hierarchy - package com.vaadin.flow.data.provider.hierarchy
-
- com.vaadin.flow.data.selection - package com.vaadin.flow.data.selection
-
- com.vaadin.flow.data.validator - package com.vaadin.flow.data.validator
-
- com.vaadin.flow.data.value - package com.vaadin.flow.data.value
-
- combineFilters(Q, C) - Method in class com.vaadin.flow.data.provider.ConfigurableFilterDataProviderWrapper
-
Combines the configured filter and the filter from the query into one
filter instance that can be passed to the wrapped data provider.
- combineFilters(SerializableBiFunction<Q, C, F>, Q, C) - Static method in class com.vaadin.flow.data.provider.FilterUtils
-
Combines the configured filter and the filter from the query into one
filter instance that can be passed to the wrapped data provider using the
filterCombiner
.
- commit(int) - Method in interface com.vaadin.flow.data.provider.ArrayUpdater.Update
-
Commits changes for the given updateId
.
- commit() - Method in interface com.vaadin.flow.data.provider.hierarchy.HierarchicalArrayUpdater.HierarchicalUpdate
-
- commit(int, String, int) - Method in interface com.vaadin.flow.data.provider.hierarchy.HierarchicalArrayUpdater.HierarchicalUpdate
-
Commits changes for the given updateId
and parent key.
- component - Variable in class com.vaadin.flow.data.provider.AbstractDataView
-
- CompositeDataGenerator<T> - Class in com.vaadin.flow.data.provider
-
A
DataGenerator
that aggregates multiple DataGenerators and delegates
the data generation to them.
- CompositeDataGenerator() - Constructor for class com.vaadin.flow.data.provider.CompositeDataGenerator
-
- ConfigurableFilterDataProvider<T,Q,C> - Interface in com.vaadin.flow.data.provider
-
A data provider that supports programmatically setting a filter that will be
applied to all queries.
- ConfigurableFilterDataProviderWrapper<T,Q,C,F> - Class in com.vaadin.flow.data.provider
-
A configurable data provider that wraps another data provider by combining
any filter from the component with the configured filter and passing that to
the wrapped provider through the query.
- ConfigurableFilterDataProviderWrapper(DataProvider<T, F>) - Constructor for class com.vaadin.flow.data.provider.ConfigurableFilterDataProviderWrapper
-
Creates a new configurable filter data provider by wrapping an existing
data provider.
- configureBinding(Binder.BindingBuilder<BEAN, ?>, PropertyDefinition<BEAN, ?>) - Method in class com.vaadin.flow.data.binder.BeanValidationBinder
-
- configureBinding(Binder.BindingBuilder<BEAN, ?>, PropertyDefinition<BEAN, ?>) - Method in class com.vaadin.flow.data.binder.Binder
-
Configures the binding
with the property definition
definition
before it's being bound.
- confirmUpdate(int) - Method in class com.vaadin.flow.data.provider.DataCommunicator
-
Confirm update with the given updateId
.
- confirmUpdate(int) - Method in class com.vaadin.flow.data.provider.hierarchy.HierarchicalCommunicationController
-
- confirmUpdate(int, String) - Method in class com.vaadin.flow.data.provider.hierarchy.HierarchicalDataCommunicator
-
- contains(T) - Method in class com.vaadin.flow.data.provider.AbstractListDataView
-
- contains(T) - Method in class com.vaadin.flow.data.provider.hierarchy.TreeData
-
Check whether the given item is in this hierarchy.
- contains(T) - Method in interface com.vaadin.flow.data.provider.ListDataView
-
Check if item is present in the currently filtered data set.
- containsKey(String) - Method in class com.vaadin.flow.data.provider.KeyMapper
-
Checks if the given key is mapped to an object.
- Converter<PRESENTATION,MODEL> - Interface in com.vaadin.flow.data.converter
-
Defines conversion between a model and a presentation type.
- convertFilter(SerializableFunction<C, F>, Query<T, C>) - Static method in class com.vaadin.flow.data.provider.FilterUtils
-
Gets the filter converted from a query filter by the
filterConverter
.
- convertToModel(PRESENTATION, ValueContext) - Method in interface com.vaadin.flow.data.converter.Converter
-
Converts the given value from presentation type to model type.
- convertToModel(Date, ValueContext) - Method in class com.vaadin.flow.data.converter.DateToLongConverter
-
- convertToModel(Date, ValueContext) - Method in class com.vaadin.flow.data.converter.DateToSqlDateConverter
-
- convertToModel(LocalDateTime, ValueContext) - Method in class com.vaadin.flow.data.converter.LocalDateTimeToDateConverter
-
- convertToModel(LocalDate, ValueContext) - Method in class com.vaadin.flow.data.converter.LocalDateToDateConverter
-
- convertToModel(String, ValueContext) - Method in class com.vaadin.flow.data.converter.StringToBigDecimalConverter
-
- convertToModel(String, ValueContext) - Method in class com.vaadin.flow.data.converter.StringToBigIntegerConverter
-
- convertToModel(String, ValueContext) - Method in class com.vaadin.flow.data.converter.StringToBooleanConverter
-
- convertToModel(String, ValueContext) - Method in class com.vaadin.flow.data.converter.StringToDateConverter
-
- convertToModel(String, ValueContext) - Method in class com.vaadin.flow.data.converter.StringToDoubleConverter
-
- convertToModel(String, ValueContext) - Method in class com.vaadin.flow.data.converter.StringToFloatConverter
-
- convertToModel(String, ValueContext) - Method in class com.vaadin.flow.data.converter.StringToIntegerConverter
-
- convertToModel(String, ValueContext) - Method in class com.vaadin.flow.data.converter.StringToLongConverter
-
- convertToModel(String, ValueContext) - Method in class com.vaadin.flow.data.converter.StringToUuidConverter
-
- convertToNumber(String, ValueContext) - Method in class com.vaadin.flow.data.converter.AbstractStringToNumberConverter
-
- convertToPresentation(T, ValueContext) - Method in class com.vaadin.flow.data.converter.AbstractStringToNumberConverter
-
- convertToPresentation(MODEL, ValueContext) - Method in interface com.vaadin.flow.data.converter.Converter
-
Converts the given value from model type to presentation type.
- convertToPresentation(Long, ValueContext) - Method in class com.vaadin.flow.data.converter.DateToLongConverter
-
- convertToPresentation(Date, ValueContext) - Method in class com.vaadin.flow.data.converter.DateToSqlDateConverter
-
- convertToPresentation(Date, ValueContext) - Method in class com.vaadin.flow.data.converter.LocalDateTimeToDateConverter
-
- convertToPresentation(Date, ValueContext) - Method in class com.vaadin.flow.data.converter.LocalDateToDateConverter
-
- convertToPresentation(Boolean, ValueContext) - Method in class com.vaadin.flow.data.converter.StringToBooleanConverter
-
- convertToPresentation(Date, ValueContext) - Method in class com.vaadin.flow.data.converter.StringToDateConverter
-
- convertToPresentation(UUID, ValueContext) - Method in class com.vaadin.flow.data.converter.StringToUuidConverter
-
- count(Query<T, F>) - Method in interface com.vaadin.flow.data.provider.CallbackDataProvider.CountCallback
-
Counts the number of available items based on a query.
- countChildItems(T) - Method in class com.vaadin.flow.data.provider.hierarchy.HierarchyMapper
-
- create(String, ErrorLevel) - Static method in interface com.vaadin.flow.data.binder.ValidationResult
-
Creates the validation result with the given errorMessage
and
errorLevel
.
- createBinding(HasValue<?, FIELDVALUE>, Converter<FIELDVALUE, TARGET>, BindingValidationStatusHandler) - Method in class com.vaadin.flow.data.binder.Binder
-
Creates a new binding with the given field.
- createComponent(T) - Method in class com.vaadin.flow.data.provider.AbstractComponentDataGenerator
-
Creates a new component based on the provided item.
- createContext(ConstraintViolation<?>) - Method in class com.vaadin.flow.data.validator.BeanValidator
-
Creates a simple message interpolation context based on the given
constraint violation.
- createEqualsFilter(ValueProvider<T, V>, V) - Static method in class com.vaadin.flow.data.provider.InMemoryDataProviderHelpers
-
Creates a predicate that compares equality of the given required value to
the value the given value provider obtains.
- createHierarchyMapper(HierarchicalDataProvider<T, F>) - Method in class com.vaadin.flow.data.provider.hierarchy.HierarchicalDataCommunicator
-
Create new HierarchyMapper
for the given data provider.
- createKey() - Method in class com.vaadin.flow.data.provider.KeyMapper
-
Creates a key for a new item.
- createSortOrder(String, SortDirection) - Method in class com.vaadin.flow.data.provider.QuerySortOrderBuilder
-
- createSortOrder(V, SortDirection) - Method in class com.vaadin.flow.data.provider.SortOrderBuilder
-
Creates a sort order object with the given parameters.
- createUnresolvedStatus(Binder<BEAN>) - Static method in class com.vaadin.flow.data.binder.BinderValidationStatus
-
Convenience method for creating a unresolved validation status for the
given binder.
- createUnresolvedStatus(Binder.Binding<?, TARGET>) - Static method in class com.vaadin.flow.data.binder.BindingValidationStatus
-
- createValueContext() - Method in class com.vaadin.flow.data.binder.Binder.BindingImpl
-
Creates a value context from the current state of the binding and its
field.
- createValueProviderFilter(ValueProvider<T, V>, SerializablePredicate<V>) - Static method in class com.vaadin.flow.data.provider.InMemoryDataProviderHelpers
-
Creates a new predicate from the given predicate and value provider.
- CURRENT_LOCALE_SUPPLIER - Static variable in class com.vaadin.flow.data.provider.InMemoryDataProviderHelpers
-
Supplier that attempts to resolve a locale from the current UI.
- fetch(Query<T, F>) - Method in class com.vaadin.flow.data.provider.AbstractBackEndDataProvider
-
- fetch(Query<T, F>) - Method in interface com.vaadin.flow.data.provider.CallbackDataProvider.FetchCallback
-
Fetches a stream of items based on a query.
- fetch(Query<T, F>) - Method in interface com.vaadin.flow.data.provider.DataProvider
-
Fetches data from this DataProvider using given query
.
- fetch(Query<T, F>) - Method in class com.vaadin.flow.data.provider.DataProviderWrapper
-
- fetch(Query<T, F>) - Method in interface com.vaadin.flow.data.provider.hierarchy.HierarchicalDataProvider
-
Fetches data from this HierarchicalDataProvider using given
query
.
- fetch(Query<T, SerializablePredicate<T>>) - Method in class com.vaadin.flow.data.provider.ListDataProvider
-
- fetchChildItems(T, Range) - Method in class com.vaadin.flow.data.provider.hierarchy.HierarchyMapper
-
- fetchChildren(HierarchicalQuery<T, F>) - Method in class com.vaadin.flow.data.provider.hierarchy.AbstractBackEndHierarchicalDataProvider
-
- fetchChildren(HierarchicalQuery<T, F>) - Method in interface com.vaadin.flow.data.provider.hierarchy.HierarchicalDataProvider
-
Fetches data from this HierarchicalDataProvider using given
query
.
- fetchChildren(HierarchicalQuery<T, SerializablePredicate<T>>) - Method in class com.vaadin.flow.data.provider.hierarchy.TreeDataProvider
-
- fetchChildrenFromBackEnd(HierarchicalQuery<T, F>) - Method in class com.vaadin.flow.data.provider.hierarchy.AbstractBackEndHierarchicalDataProvider
-
Fetches data from the back end using the given query.
- fetchFromBackEnd(Query<T, F>) - Method in class com.vaadin.flow.data.provider.AbstractBackEndDataProvider
-
Fetches data from the back end using the given query.
- fetchFromBackEnd(Query<T, F>) - Method in class com.vaadin.flow.data.provider.CallbackDataProvider
-
- fetchFromProvider(int, int) - Method in class com.vaadin.flow.data.provider.DataCommunicator
-
Fetches a list of items from the DataProvider.
- fetchFromProvider(int, int) - Method in class com.vaadin.flow.data.provider.hierarchy.HierarchicalDataCommunicator
-
- fetchHierarchyItems(Range) - Method in class com.vaadin.flow.data.provider.hierarchy.HierarchyMapper
-
Gets a stream of items in the form of a flattened hierarchy from the
back-end and filter the wanted results from the list.
- fetchHierarchyItems(T, Range) - Method in class com.vaadin.flow.data.provider.hierarchy.HierarchyMapper
-
Gets a stream of children for the given item in the form of a flattened
hierarchy from the back-end and filter the wanted results from the list.
- fetchRootItems(Range) - Method in class com.vaadin.flow.data.provider.hierarchy.HierarchyMapper
-
Gets a stream of root items from the back-end and filter the wanted
results from the list.
- Filter(F) - Constructor for class com.vaadin.flow.data.provider.DataCommunicator.Filter
-
Creates the filter object and sets it notify item count change
listeners by default.
- Filter(F, boolean) - Constructor for class com.vaadin.flow.data.provider.DataCommunicator.Filter
-
Creates the filter object and sets its lifespan.
- filteringBy(SerializableBiPredicate<T, Q>) - Method in interface com.vaadin.flow.data.provider.InMemoryDataProvider
-
Wraps this data provider to create a new data provider that is filtered
by comparing an item to the filter value provided in the query.
- filteringBy(ValueProvider<T, V>, SerializableBiPredicate<V, Q>) - Method in interface com.vaadin.flow.data.provider.InMemoryDataProvider
-
Wraps this data provider to create a new data provider that is filtered
by comparing an item property value to the filter value provided in the
query.
- filteringByCaseInsensitiveString(InMemoryDataProvider<T>, ValueProvider<T, String>, SerializableBiPredicate<String, String>, SerializableSupplier<Locale>) - Static method in class com.vaadin.flow.data.provider.InMemoryDataProviderHelpers
-
Wraps a given data provider so that its filter tests the given predicate
with the lower case string provided by the given value provider.
- filteringByEquals(ValueProvider<T, V>) - Method in interface com.vaadin.flow.data.provider.InMemoryDataProvider
-
Wraps this data provider to create a new data provider that is filtered
by testing whether the value of a property is equals to the filter value
provided in the query.
- filteringByIgnoreNull(InMemoryDataProvider<T>, ValueProvider<T, V>, SerializableBiPredicate<V, Q>) - Static method in class com.vaadin.flow.data.provider.InMemoryDataProviderHelpers
-
Wraps a given data provider so that its filter ignores null items
returned by the given value provider.
- filteringByPrefix(ValueProvider<T, String>, Locale) - Method in interface com.vaadin.flow.data.provider.InMemoryDataProvider
-
Wraps this data provider to create a new data provider that is filtered
by a string by checking whether the lower case representation of an item
property value starts with the lower case representation of the filter
value provided in the query.
- filteringByPrefix(ValueProvider<T, String>) - Method in interface com.vaadin.flow.data.provider.InMemoryDataProvider
-
Wraps this data provider to create a new data provider that is filtered
by a string by checking whether the lower case representation of an item
property value starts with the lower case representation of the filter
value provided in the query.
- filteringBySubstring(ValueProvider<T, String>, Locale) - Method in interface com.vaadin.flow.data.provider.InMemoryDataProvider
-
Wraps this data provider to create a new data provider that is filtered
by a string by checking whether the lower case representation of the
filter value provided in the query is a substring of the lower case
representation of an item property value.
- filteringBySubstring(ValueProvider<T, String>) - Method in interface com.vaadin.flow.data.provider.InMemoryDataProvider
-
Wraps this data provider to create a new data provider that is filtered
by a string by checking whether the lower case representation of the
filter value provided in the query is a substring of the lower case
representation of an item property value.
- FilterUtils - Class in com.vaadin.flow.data.provider
-
Internal filter related utilities for data provider.
- findLocale() - Static method in class com.vaadin.flow.data.binder.Binder.BindingImpl
-
Finds an appropriate locale to be used in conversion and validation.
- fireEvent(EventObject) - Method in class com.vaadin.flow.data.provider.AbstractDataProvider
-
Sends the event to all listeners.
- flatMap(SerializableFunction<R, Result<S>>) - Method in interface com.vaadin.flow.data.binder.Result
-
If this Result has a value, applies the given Result-returning function
to the value.
- FloatRangeValidator - Class in com.vaadin.flow.data.validator
-
Validator for validating that a
Float
is inside a given range.
- FloatRangeValidator(String, Float, Float) - Constructor for class com.vaadin.flow.data.validator.FloatRangeValidator
-
Creates a validator for checking that an Float is within a given range.
- flush() - Method in class com.vaadin.flow.data.provider.hierarchy.HierarchicalCommunicationController
-
- forField(HasValue<?, FIELDVALUE>) - Method in class com.vaadin.flow.data.binder.Binder
-
Creates a new binding for the given field.
- forMemberField(HasValue<?, FIELDVALUE>) - Method in class com.vaadin.flow.data.binder.Binder
-
Creates a new binding for the given field.
- from(SerializablePredicate<T>, String) - Static method in interface com.vaadin.flow.data.binder.Validator
-
Builds a validator out of a conditional function and an error message.
- from(SerializablePredicate<T>, String, ErrorLevel) - Static method in interface com.vaadin.flow.data.binder.Validator
-
Builds a validator out of a conditional function and an error message.
- from(SerializablePredicate<T>, ErrorMessageProvider) - Static method in interface com.vaadin.flow.data.binder.Validator
-
Builds a validator out of a conditional function and an error message
provider.
- from(SerializablePredicate<T>, ErrorMessageProvider, ErrorLevel) - Static method in interface com.vaadin.flow.data.binder.Validator
-
Builds a validator out of a conditional function and an error message
provider.
- from(SerializableFunction<P, M>, SerializableFunction<M, P>, SerializableFunction<Exception, String>) - Static method in interface com.vaadin.flow.data.converter.Converter
-
Constructs a converter from two functions.
- from(SerializableFunction<P, Result<M>>, SerializableFunction<M, P>) - Static method in interface com.vaadin.flow.data.converter.Converter
-
Constructs a converter from a filter and a function.
- fromCallbacks(CallbackDataProvider.FetchCallback<T, Void>, CallbackDataProvider.CountCallback<T, Void>) - Static method in interface com.vaadin.flow.data.provider.DataProvider
-
Creates a new data provider that uses callbacks for fetching and counting
items from any backing store.
- fromFilteringCallbacks(CallbackDataProvider.FetchCallback<T, F>, CallbackDataProvider.CountCallback<T, F>) - Static method in interface com.vaadin.flow.data.provider.DataProvider
-
Creates a new data provider that uses filtering callbacks for fetching
and counting items from any backing store.
- fromStream(Stream<T>) - Static method in interface com.vaadin.flow.data.provider.DataProvider
-
Creates a new data provider from the given stream.
- generateData(T, JsonObject) - Method in class com.vaadin.flow.data.provider.BeanDataGenerator
-
- generateData(T, JsonObject) - Method in class com.vaadin.flow.data.provider.CompositeDataGenerator
-
- generateData(T, JsonObject) - Method in interface com.vaadin.flow.data.provider.DataGenerator
-
Adds custom data for the given item to its serialized JsonObject
representation.
- generateJson(T) - Method in class com.vaadin.flow.data.provider.hierarchy.HierarchicalCommunicationController
-
- get(Class<? extends T>) - Static method in class com.vaadin.flow.data.binder.BeanPropertySet
-
- get(Class<? extends T>, boolean, PropertyFilterDefinition) - Static method in class com.vaadin.flow.data.binder.BeanPropertySet
-
- get(String) - Method in interface com.vaadin.flow.data.provider.DataKeyMapper
-
Gets the data object identified by given key.
- get(String) - Method in class com.vaadin.flow.data.provider.KeyMapper
-
Retrieves object with the key.
- getAddedSelection() - Method in class com.vaadin.flow.data.selection.MultiSelectionEvent
-
Gets the items that were added to selection.
- getAllSelectedItems() - Method in class com.vaadin.flow.data.selection.MultiSelectionEvent
-
- getAllSelectedItems() - Method in interface com.vaadin.flow.data.selection.SelectionEvent
-
Gets all the currently selected items.
- getAllSelectedItems() - Method in class com.vaadin.flow.data.selection.SingleSelectionEvent
-
- getBackEndSorting() - Method in class com.vaadin.flow.data.provider.DataCommunicator
-
- getBackEndSorting() - Method in class com.vaadin.flow.data.provider.hierarchy.HierarchyMapper
-
Gets the current back-end sorting.
- getBean() - Method in class com.vaadin.flow.data.binder.Binder
-
- getBeanState(BEAN, Collection<Binder.Binding<BEAN, ?>>) - Method in class com.vaadin.flow.data.binder.Binder
-
Stores the state of the given bean.
- getBeanType() - Method in class com.vaadin.flow.data.binder.BeanPropertySet
-
Gets the bean type of this bean property set.
- getBeanValidationErrors() - Method in class com.vaadin.flow.data.binder.BinderValidationStatus
-
Gets the failed bean level validation results.
- getBeanValidationErrors() - Method in exception com.vaadin.flow.data.binder.ValidationException
-
Returns a list of the bean level validation errors which caused the
exception, or an empty list if the exception was caused by
field level validation errors
.
- getBeanValidationResults() - Method in class com.vaadin.flow.data.binder.BinderValidationStatus
-
Gets the bean level validation results.
- getBinder() - Method in class com.vaadin.flow.data.binder.Binder.BindingBuilderImpl
-
Returns the Binder
connected to this Binding
instance.
- getBinder() - Method in class com.vaadin.flow.data.binder.Binder.BindingImpl
-
Returns the Binder
connected to this Binding
instance.
- getBinder() - Method in class com.vaadin.flow.data.binder.BinderValidationStatus
-
Gets the source binder of the status.
- getBinder() - Method in class com.vaadin.flow.data.binder.StatusChangeEvent
-
Gets the binder.
- getBinding(String) - Method in class com.vaadin.flow.data.binder.Binder
-
Gets the binding for a property name.
- getBinding() - Method in class com.vaadin.flow.data.binder.BindingValidationStatus
-
Gets the source binding of the validation status.
- getBindingExceptionHandler() - Method in class com.vaadin.flow.data.binder.Binder
-
Gets the current exception handler.
- getBindings() - Method in class com.vaadin.flow.data.binder.Binder
-
Returns the bindings for this binder.
- getCaption() - Method in class com.vaadin.flow.data.binder.AbstractBeanPropertyDefinition
-
- getCaption() - Method in interface com.vaadin.flow.data.binder.PropertyDefinition
-
Gets the human readable caption to show for this property.
- getChildCount(HierarchicalQuery<T, F>) - Method in interface com.vaadin.flow.data.provider.hierarchy.HierarchicalDataProvider
-
Get the number of immediate child data items for the parent item returned
by a given query.
- getChildCount(HierarchicalQuery<T, SerializablePredicate<T>>) - Method in class com.vaadin.flow.data.provider.hierarchy.TreeDataProvider
-
- getChildren(T) - Method in class com.vaadin.flow.data.provider.hierarchy.TreeData
-
Get the immediate child items for the given item.
- getComponent() - Method in class com.vaadin.flow.data.binder.ValueContext
-
Returns an Optional
for the Component
related to value
conversion.
- getComponentFilter(Component) - Static method in class com.vaadin.flow.data.provider.DataViewUtils
-
Gets the in-memory filter of a given component instance.
- getComponentSortComparator(Component) - Static method in class com.vaadin.flow.data.provider.DataViewUtils
-
Gets the in-memory sort comparator of a given component instance.
- getContainer() - Method in class com.vaadin.flow.data.provider.AbstractComponentDataGenerator
-
Gets the element where the generated components will be attached to.
- getDataCommunicator() - Method in class com.vaadin.flow.data.provider.AbstractLazyDataView
-
Returns the data communicator for the component and checks that the data
provider is of the correct type.
- getDataProvider() - Method in class com.vaadin.flow.data.provider.AbstractListDataView
-
- getDataProvider() - Method in class com.vaadin.flow.data.provider.DataCommunicator
-
Gets the current data provider from this DataCommunicator.
- getDataProvider() - Method in interface com.vaadin.flow.data.provider.hierarchy.HasHierarchicalDataProvider
-
- getDataProvider() - Method in class com.vaadin.flow.data.provider.hierarchy.HierarchicalDataCommunicator
-
- getDataProvider() - Method in class com.vaadin.flow.data.provider.hierarchy.HierarchyMapper
-
Gets the HierarchicalDataProvider
for this
HierarchyMapper
.
- getDataProviderSize() - Method in class com.vaadin.flow.data.provider.DataCommunicator
-
Getter method for determining the item count of the data.
- getDataProviderSize() - Method in class com.vaadin.flow.data.provider.hierarchy.HierarchicalDataCommunicator
-
- getDefaultFilter() - Static method in class com.vaadin.flow.data.binder.PropertyFilterDefinition
-
Get the default nested property filtering conditions.
- getDefaultValidator() - Method in interface com.vaadin.flow.data.binder.HasValidator
-
Returns a validator that checks the state of the Value.
- getDepth(T) - Method in class com.vaadin.flow.data.provider.hierarchy.HierarchicalDataCommunicator
-
Returns depth of item in the tree starting from zero representing a root.
- getDepth(T) - Method in class com.vaadin.flow.data.provider.hierarchy.HierarchyMapper
-
Returns depth of item in the tree starting from zero representing a root.
- getDescriptor() - Method in class com.vaadin.flow.data.binder.AbstractBeanPropertyDefinition
-
Gets the property descriptor of this instance.
- getDirection() - Method in class com.vaadin.flow.data.provider.SortOrder
-
Sorting direction.
- getEmptyValue() - Method in class com.vaadin.flow.data.binder.ReadOnlyHasValue
-
- getEmptyValue() - Method in interface com.vaadin.flow.data.selection.MultiSelect
-
MultiSelect empty value should always be an empty set by default and not
null
.
- getErrorLevel() - Method in interface com.vaadin.flow.data.binder.ValidationResult
-
Returns optional error level for this validation result.
- getErrorLevel() - Method in class com.vaadin.flow.data.binder.ValidationResult.SimpleValidationResult
-
- getErrorMessage() - Method in interface com.vaadin.flow.data.binder.ValidationResult
-
Returns the result message.
- getErrorMessage() - Method in class com.vaadin.flow.data.binder.ValidationResult.SimpleValidationResult
-
- getErrorMessage(ValueContext) - Method in class com.vaadin.flow.data.converter.AbstractStringToNumberConverter
-
Gets the error message to use when conversion fails.
- getErrorThemeName(ErrorLevel) - Method in class com.vaadin.flow.data.binder.DefaultBinderValidationErrorHandler
-
Gets the theme name for the ErrorLevel
.
- getExpandedItems() - Method in class com.vaadin.flow.data.provider.hierarchy.HierarchyMapper
-
Returns the expanded items in form of an unmodifiable collection.
- getFalseString(Locale) - Method in class com.vaadin.flow.data.converter.StringToBooleanConverter
-
Gets the locale-depended string representation for false.
- getField() - Method in interface com.vaadin.flow.data.binder.Binder.Binding
-
Gets the field the binding uses.
- getField() - Method in interface com.vaadin.flow.data.binder.Binder.BindingBuilder
-
Gets the field the binding is being built for.
- getField() - Method in class com.vaadin.flow.data.binder.Binder.BindingBuilderImpl
-
- getField() - Method in class com.vaadin.flow.data.binder.Binder.BindingImpl
-
- getField() - Method in class com.vaadin.flow.data.binder.BindingValidationStatus
-
Gets the bound field for this status.
- getFields() - Method in class com.vaadin.flow.data.binder.Binder
-
Returns the fields this binder has been bound to.
- getFieldValidationErrors() - Method in class com.vaadin.flow.data.binder.BinderValidationStatus
-
Gets the failed field level validation statuses.
- getFieldValidationErrors() - Method in exception com.vaadin.flow.data.binder.ValidationException
-
Returns a list of the field level validation errors which caused the
exception, or an empty list if the exception was caused by
bean level validation errors
.
- getFieldValidationStatuses() - Method in class com.vaadin.flow.data.binder.BinderValidationStatus
-
Gets the field level validation statuses.
- getFilter(Query<T, Q>) - Method in class com.vaadin.flow.data.provider.ConfigurableFilterDataProviderWrapper
-
- getFilter() - Method in class com.vaadin.flow.data.provider.DataCommunicator
-
Get the object used for filtering in this data communicator.
- getFilter(Query<T, F>) - Method in class com.vaadin.flow.data.provider.DataProviderWrapper
-
Gets the filter that should be used in the modified Query.
- getFilter() - Method in class com.vaadin.flow.data.provider.hierarchy.HierarchyMapper
-
Gets the current filter.
- getFilter() - Method in class com.vaadin.flow.data.provider.hierarchy.TreeDataProvider
-
- getFilter() - Method in interface com.vaadin.flow.data.provider.InMemoryDataProvider
-
Gets the current filter of this data provider.
- getFilter() - Method in class com.vaadin.flow.data.provider.ListDataProvider
-
- getFilter() - Method in class com.vaadin.flow.data.provider.Query
-
Gets the filter for items to fetch.
- getFilterObject() - Method in class com.vaadin.flow.data.provider.DataCommunicator.Filter
-
Returns a filter object for this component.
- getFirstSelectedItem() - Method in class com.vaadin.flow.data.selection.MultiSelectionEvent
-
- getFirstSelectedItem() - Method in interface com.vaadin.flow.data.selection.SelectionEvent
-
Get first selected data item.
- getFirstSelectedItem() - Method in interface com.vaadin.flow.data.selection.SelectionModel
-
Get first selected data item.
- getFirstSelectedItem() - Method in interface com.vaadin.flow.data.selection.SelectionModel.Multi
-
- getFirstSelectedItem() - Method in interface com.vaadin.flow.data.selection.SelectionModel.Single
-
- getFirstSelectedItem() - Method in class com.vaadin.flow.data.selection.SingleSelectionEvent
-
- getFormat(Locale) - Method in class com.vaadin.flow.data.converter.AbstractStringToNumberConverter
-
- getFormat(Locale) - Method in class com.vaadin.flow.data.converter.StringToBigDecimalConverter
-
- getFormat(Locale) - Method in class com.vaadin.flow.data.converter.StringToBigIntegerConverter
-
- getFormat(Locale) - Method in class com.vaadin.flow.data.converter.StringToDateConverter
-
- getFormat(Locale) - Method in class com.vaadin.flow.data.converter.StringToIntegerConverter
-
- getFormat(Locale) - Method in class com.vaadin.flow.data.converter.StringToLongConverter
-
- getGenericDataView() - Method in interface com.vaadin.flow.data.provider.HasDataView
-
Get the DataView for the component.
- getGetter() - Method in class com.vaadin.flow.data.binder.BeanPropertySet.NestedBeanPropertyDefinition
-
- getGetter() - Method in interface com.vaadin.flow.data.binder.Binder.Binding
-
Gets the getter associated with this Binding.
- getGetter() - Method in class com.vaadin.flow.data.binder.Binder.BindingImpl
-
- getGetter() - Method in interface com.vaadin.flow.data.binder.PropertyDefinition
-
Gets the value provider that is used for finding the value of this
property for a bean.
- getHasValue() - Method in class com.vaadin.flow.data.binder.ValueContext
-
Returns an Optional
for the HasValue
used in the value
conversion.
- getHierarchyMapper() - Method in class com.vaadin.flow.data.provider.hierarchy.HierarchicalDataCommunicator
-
Returns the HierarchyMapper
used by this data communicator.
- getId(T) - Method in class com.vaadin.flow.data.provider.CallbackDataProvider
-
- getId(T) - Method in interface com.vaadin.flow.data.provider.DataProvider
-
Gets an identifier for the given item.
- getId(T) - Method in class com.vaadin.flow.data.provider.DataProviderWrapper
-
- getIdentifierProvider() - Method in class com.vaadin.flow.data.provider.AbstractDataView
-
- getIgnorePackageNamesStartingWith() - Method in class com.vaadin.flow.data.binder.PropertyFilterDefinition
-
Returns a list of package name prefixes to ignore.
- getIndex(T) - Method in class com.vaadin.flow.data.provider.hierarchy.HierarchicalDataCommunicator
-
Returns index for the row or null
.
- getIndex(T) - Method in class com.vaadin.flow.data.provider.hierarchy.HierarchyMapper
-
Finds the index of the item in active tree.
- getIndexOf(T) - Method in class com.vaadin.flow.data.provider.hierarchy.HierarchyMapper
-
Finds the current index of given object.
- getInMemorySorting() - Method in class com.vaadin.flow.data.provider.DataCommunicator
-
Returns the
Comparator
to use with in-memory sorting.
- getInMemorySorting() - Method in class com.vaadin.flow.data.provider.hierarchy.HierarchyMapper
-
Gets the current in-memory sorting.
- getInMemorySorting() - Method in class com.vaadin.flow.data.provider.Query
-
Gets the comparator for sorting in-memory data.
- getItem() - Method in interface com.vaadin.flow.data.binder.HasItemComponents.ItemComponent
-
- getItem(int) - Method in class com.vaadin.flow.data.provider.AbstractLazyDataView
-
Gets the item at the given index from the data available to the
component.
- getItem(int) - Method in class com.vaadin.flow.data.provider.AbstractListDataView
-
- getItem() - Method in class com.vaadin.flow.data.provider.DataChangeEvent.DataRefreshEvent
-
Gets the refreshed item.
- getItem(int) - Method in class com.vaadin.flow.data.provider.DataCommunicator
-
Gets the item at the given index from the data available to the
component.
- getItem(int) - Method in interface com.vaadin.flow.data.provider.DataView
-
Gets the item at the given index from the data available to the
component.
- getItemCount() - Method in class com.vaadin.flow.data.provider.AbstractListDataView
-
- getItemCount() - Method in class com.vaadin.flow.data.provider.DataCommunicator
-
This is the latest DataProvider item count informed to the client or
fetched from the DataProvider if client data has not been sent.
- getItemCount() - Method in class com.vaadin.flow.data.provider.ItemCountChangeEvent
-
Get the new item count for the component.
- getItemCount() - Method in interface com.vaadin.flow.data.provider.ListDataView
-
Get the full item count with filters if any set.
- getItemCountEstimate() - Method in class com.vaadin.flow.data.provider.AbstractLazyDataView
-
- getItemCountEstimate() - Method in class com.vaadin.flow.data.provider.DataCommunicator
-
Gets the item count estimate used.
- getItemCountEstimate() - Method in interface com.vaadin.flow.data.provider.LazyDataView
-
Gets the item count estimate.
- getItemCountEstimateIncrease() - Method in class com.vaadin.flow.data.provider.AbstractLazyDataView
-
- getItemCountEstimateIncrease() - Method in class com.vaadin.flow.data.provider.DataCommunicator
-
Gets the item count estimate increase used.
- getItemCountEstimateIncrease() - Method in interface com.vaadin.flow.data.provider.LazyDataView
-
Gets the item count estimate increase - how much the item count estimate
is increased once the previous item count estimate has been reached.
- getItemKey(T) - Method in class com.vaadin.flow.data.provider.AbstractComponentDataGenerator
-
Gets a unique key for a given item.
- getItemPosition(T) - Method in interface com.vaadin.flow.data.binder.HasItemComponents
-
Gets the index of the child element that represents the given item.
- getItems() - Method in class com.vaadin.flow.data.provider.AbstractDataView
-
- getItems() - Method in class com.vaadin.flow.data.provider.AbstractLazyDataView
-
- getItems() - Method in class com.vaadin.flow.data.provider.AbstractListDataView
-
- getItems() - Method in interface com.vaadin.flow.data.provider.DataView
-
Get the full data available to the component.
- getItems() - Method in class com.vaadin.flow.data.provider.ListDataProvider
-
Returns the underlying data items.
- getJavaxBeanValidator() - Method in class com.vaadin.flow.data.validator.BeanValidator
-
Returns a shared JSR-303 validator instance to use.
- getJavaxBeanValidatorFactory() - Static method in class com.vaadin.flow.data.validator.BeanValidator
-
Returns the underlying JSR-303 bean validator factory used.
- getKeyMapper() - Method in class com.vaadin.flow.data.provider.DataCommunicator
-
- getLazyDataView() - Method in interface com.vaadin.flow.data.provider.HasLazyDataView
-
Get the LazyDataView for the component that allows access to the items in
the component.
- getLimit() - Method in class com.vaadin.flow.data.provider.Query
-
Gets the number of items to fetch.
- getListDataView() - Method in interface com.vaadin.flow.data.provider.HasListDataView
-
Get the ListDataView for the component.
- getLocale() - Method in class com.vaadin.flow.data.binder.ValueContext
-
Returns an Optional
for the Locale
used in the value
conversion.
- getMaxLength() - Method in class com.vaadin.flow.data.validator.StringLengthValidator
-
Gets the maximum permissible length of the string.
- getMaxNestingDepth() - Method in class com.vaadin.flow.data.binder.PropertyFilterDefinition
-
Returns the maximum amount of nesting levels for sub-properties.
- getMaxValue() - Method in class com.vaadin.flow.data.validator.RangeValidator
-
Gets the maximum value of the range.
- getMessage() - Method in class com.vaadin.flow.data.binder.BindingValidationStatus
-
- getMessage() - Method in interface com.vaadin.flow.data.binder.Result
-
Returns an Optional of the result message, or an empty Optional if none.
- getMessage(T) - Method in class com.vaadin.flow.data.validator.AbstractValidator
-
Returns the error message for the given value.
- getMessage(ConstraintViolation<?>, Locale) - Method in class com.vaadin.flow.data.validator.BeanValidator
-
Returns the interpolated error message for the given constraint violation
using the locale specified for this validator.
- getMinLength() - Method in class com.vaadin.flow.data.validator.StringLengthValidator
-
Gets the minimum permissible length of the string.
- getMinValue() - Method in class com.vaadin.flow.data.validator.RangeValidator
-
Returns the minimum value of the range.
- getName() - Method in class com.vaadin.flow.data.binder.AbstractBeanPropertyDefinition
-
- getName() - Method in class com.vaadin.flow.data.binder.BeanPropertySet.NestedBeanPropertyDefinition
-
- getName() - Method in interface com.vaadin.flow.data.binder.PropertyDefinition
-
Gets the full name of this property.
- getNaturalSortComparator(SortDirection) - Static method in class com.vaadin.flow.data.provider.InMemoryDataProviderHelpers
-
Gets the natural order comparator for the type argument, or the natural
order comparator reversed if the given sorting direction is
SortDirection.DESCENDING
.
- getNewSelection() - Method in class com.vaadin.flow.data.selection.MultiSelectionEvent
-
- getNewStatus() - Method in class com.vaadin.flow.data.binder.ValidationStatusChangeEvent
-
- getNextItem(T) - Method in class com.vaadin.flow.data.provider.AbstractListDataView
-
- getNextItem(T) - Method in interface com.vaadin.flow.data.provider.ListDataView
-
Gets the item after given item from the filtered and sorted data.
- getOffset() - Method in class com.vaadin.flow.data.provider.Query
-
Gets the first index of items to fetch.
- getOldSelection() - Method in class com.vaadin.flow.data.selection.MultiSelectionEvent
-
Gets the old selection.
- getOpposite() - Method in enum com.vaadin.flow.data.provider.SortDirection
-
Get the sort direction that is the direct opposite to this one.
- getOrThrow(SerializableFunction<String, ? extends X>) - Method in interface com.vaadin.flow.data.binder.Result
-
Return the value, if the result denotes success, otherwise throw an
exception to be created by the provided supplier.
- getPage() - Method in class com.vaadin.flow.data.provider.Query
-
Returns a zero-based page index to be retrieved.
- getPageSize() - Method in class com.vaadin.flow.data.provider.DataCommunicator
-
Returns the page size set to fetch items.
- getPageSize() - Method in class com.vaadin.flow.data.provider.Query
-
Returns the page size that should be returned.
- getParent() - Method in class com.vaadin.flow.data.binder.BeanPropertySet.NestedBeanPropertyDefinition
-
- getParent() - Method in interface com.vaadin.flow.data.binder.PropertyDefinition
-
Gets the parent property of this property if this is a sub-property of
the property set.
- getParent() - Method in class com.vaadin.flow.data.provider.hierarchy.HierarchicalQuery
-
Get the hierarchical parent object, where null
corresponds
to the root node.
- getParent(T) - Method in class com.vaadin.flow.data.provider.hierarchy.TreeData
-
Get the parent item for the given item.
- getParentIndex(T) - Method in class com.vaadin.flow.data.provider.hierarchy.HierarchicalDataCommunicator
-
Returns parent index for the row or null
.
- getParentIndex(T) - Method in class com.vaadin.flow.data.provider.hierarchy.HierarchyMapper
-
Finds the index of the parent of the item in given target index.
- getParentItem(T) - Method in class com.vaadin.flow.data.provider.hierarchy.HierarchicalDataCommunicator
-
Returns parent item for the row or null
.
- getParentOfItem(T) - Method in class com.vaadin.flow.data.provider.hierarchy.HierarchyMapper
-
Find parent for the given item among open folders.
- getParentOptional() - Method in class com.vaadin.flow.data.provider.hierarchy.HierarchicalQuery
-
Get an Optional of the hierarchical parent object.
- getPassivatedKeys(Set<String>) - Method in class com.vaadin.flow.data.provider.DataCommunicator
-
- getPassivatedKeys(Set<String>) - Method in class com.vaadin.flow.data.provider.hierarchy.HierarchicalDataCommunicator
-
- getPreviousItem(T) - Method in class com.vaadin.flow.data.provider.AbstractListDataView
-
- getPreviousItem(T) - Method in interface com.vaadin.flow.data.provider.ListDataView
-
Gets the item before given item from the filtered and sorted data.
- getProperties() - Method in class com.vaadin.flow.data.binder.BeanPropertySet
-
- getProperties() - Method in interface com.vaadin.flow.data.binder.PropertySet
-
Gets all known properties as a stream.
- getProperty(String) - Method in class com.vaadin.flow.data.binder.BeanPropertySet
-
- getProperty(String) - Method in interface com.vaadin.flow.data.binder.PropertySet
-
Gets the definition for the named property, or an empty optional if there
is no property with the given name.
- getPropertyHolderType() - Method in class com.vaadin.flow.data.binder.AbstractBeanPropertyDefinition
-
- getPropertyHolderType() - Method in interface com.vaadin.flow.data.binder.PropertyDefinition
-
Gets the type of the class containing this property.
- getPropertySet() - Method in class com.vaadin.flow.data.binder.AbstractBeanPropertyDefinition
-
- getPropertySet() - Method in interface com.vaadin.flow.data.binder.PropertyDefinition
-
- getQuery(Component) - Static method in class com.vaadin.flow.data.provider.DataViewUtils
-
Generates a data query with component's in-memory filter and sort
comparator.
- getQuery(Component, boolean) - Static method in class com.vaadin.flow.data.provider.DataViewUtils
-
Generates a data query with component's in-memory filter and sort
comparator, which is optionally included if withSorting
is set to
true
.
- getRemovedSelection() - Method in class com.vaadin.flow.data.selection.MultiSelectionEvent
-
Gets the items that were removed from selection.
- getRenderedComponent(String) - Method in class com.vaadin.flow.data.provider.AbstractComponentDataGenerator
-
- getRequestedRangeEnd() - Method in class com.vaadin.flow.data.provider.Query
-
Gets the requested range end.
- getRequiredConfigurator() - Method in class com.vaadin.flow.data.binder.BeanValidationBinder
-
Gets field required indicator configuration logic.
- getResult() - Method in class com.vaadin.flow.data.binder.BindingValidationStatus
-
- getRootItems() - Method in class com.vaadin.flow.data.provider.hierarchy.TreeData
-
Gets the root items of this structure.
- getRootSize() - Method in class com.vaadin.flow.data.provider.hierarchy.HierarchyMapper
-
Returns the size of root level.
- getSelectedItem() - Method in interface com.vaadin.flow.data.selection.SelectionModel.Single
-
Returns the currently selected item, or an empty optional if no item
is selected.
- getSelectedItem() - Method in class com.vaadin.flow.data.selection.SingleSelectionEvent
-
Returns an optional of the item that was selected, or an empty optional
if a previously selected item was deselected.
- getSelectedItems() - Method in interface com.vaadin.flow.data.selection.MultiSelect
-
Returns an immutable set of the currently selected items.
- getSelectedItems() - Method in interface com.vaadin.flow.data.selection.SelectionModel
-
Returns an immutable set of the currently selected items.
- getSelectedItems() - Method in interface com.vaadin.flow.data.selection.SelectionModel.Single
-
Returns a singleton set of the currently selected item or an empty
set if no item is selected.
- getSetter() - Method in class com.vaadin.flow.data.binder.BeanPropertySet.NestedBeanPropertyDefinition
-
- getSetter() - Method in interface com.vaadin.flow.data.binder.Binder.Binding
-
Gets the setter associated with this Binding.
- getSetter() - Method in class com.vaadin.flow.data.binder.Binder.BindingImpl
-
- getSetter() - Method in interface com.vaadin.flow.data.binder.PropertyDefinition
-
Gets an optional setter for storing a property value in a bean.
- getSortComparator() - Method in class com.vaadin.flow.data.provider.hierarchy.TreeDataProvider
-
- getSortComparator() - Method in interface com.vaadin.flow.data.provider.InMemoryDataProvider
-
Gets the current sort comparator of this data provider.
- getSortComparator() - Method in class com.vaadin.flow.data.provider.ListDataProvider
-
- getSorted() - Method in class com.vaadin.flow.data.provider.SortOrder
-
Sorting information.
- getSortingComparator() - Method in class com.vaadin.flow.data.provider.Query
-
Gets the optional comparator for sorting data.
- getSortOrder() - Method in class com.vaadin.flow.data.event.SortEvent
-
Gets the sort order list.
- getSortOrders() - Method in class com.vaadin.flow.data.provider.Query
-
Gets the sorting for items to fetch.
- getSource() - Method in class com.vaadin.flow.data.binder.StatusChangeEvent
-
- getSource() - Method in class com.vaadin.flow.data.binder.ValidationStatusChangeEvent
-
- getSource() - Method in class com.vaadin.flow.data.provider.DataChangeEvent
-
- getSource() - Method in interface com.vaadin.flow.data.selection.SelectionEvent
-
The component on which the Event initially occurred.
- getSource() - Method in class com.vaadin.flow.data.selection.SingleSelectionEvent
-
The listing component on which the Event initially occurred.
- getStatus() - Method in class com.vaadin.flow.data.binder.BindingValidationStatus
-
Gets status of the validation.
- getStatusLabel() - Method in class com.vaadin.flow.data.binder.Binder
-
Gets the status label or an empty optional if none has been set.
- getSupportedDataProviderType() - Method in class com.vaadin.flow.data.provider.AbstractDataView
-
- getSupportedDataProviderType() - Method in class com.vaadin.flow.data.provider.AbstractLazyDataView
-
- getSupportedDataProviderType() - Method in class com.vaadin.flow.data.provider.AbstractListDataView
-
- getThemes(HasValue<?, ?>) - Method in class com.vaadin.flow.data.binder.DefaultBinderValidationErrorHandler
-
Gets themes for the field
.
- getTopLevelName() - Method in class com.vaadin.flow.data.binder.BeanPropertySet.NestedBeanPropertyDefinition
-
- getTopLevelName() - Method in interface com.vaadin.flow.data.binder.PropertyDefinition
-
Gets the top level name of this property.
- getTreeData() - Method in interface com.vaadin.flow.data.provider.hierarchy.HasHierarchicalDataProvider
-
- getTreeData() - Method in class com.vaadin.flow.data.provider.hierarchy.TreeDataProvider
-
Return the underlying hierarchical data of this provider.
- getTreeSize() - Method in class com.vaadin.flow.data.provider.hierarchy.HierarchyMapper
-
Returns the size of the currently expanded hierarchy.
- getTrueString(Locale) - Method in class com.vaadin.flow.data.converter.StringToBooleanConverter
-
Gets the locale-depended string representation for true.
- getType() - Method in class com.vaadin.flow.data.binder.AbstractBeanPropertyDefinition
-
- getType() - Method in interface com.vaadin.flow.data.binder.PropertyDefinition
-
Gets the type of this property.
- getValidationErrorHandler() - Method in class com.vaadin.flow.data.binder.Binder
-
Gets the validation error of this form.
- getValidationErrors() - Method in class com.vaadin.flow.data.binder.BinderValidationStatus
-
Gets both field and bean level validation errors.
- getValidationErrors() - Method in exception com.vaadin.flow.data.binder.ValidationException
-
Gets both field and bean level validation errors.
- getValidationResults() - Method in class com.vaadin.flow.data.binder.BindingValidationStatus
-
Gets all the validation results related to this binding validation
status.
- getValidationStatusHandler() - Method in interface com.vaadin.flow.data.binder.Binder.Binding
-
Gets the validation status handler for this Binding.
- getValidationStatusHandler() - Method in class com.vaadin.flow.data.binder.Binder.BindingImpl
-
- getValidationStatusHandler() - Method in class com.vaadin.flow.data.binder.Binder
-
Gets the status handler of this form.
- getValue() - Method in class com.vaadin.flow.data.binder.ReadOnlyHasValue
-
- getValue() - Method in interface com.vaadin.flow.data.selection.MultiSelect
-
- getValue() - Method in class com.vaadin.flow.data.selection.MultiSelectionEvent
-
Gets the current selection.
- getValueChangeMode() - Method in interface com.vaadin.flow.data.value.HasValueChangeMode
-
Gets current value change mode of the component.
- getValueChangeTimeout() - Method in interface com.vaadin.flow.data.value.HasValueChangeMode
-
- handle(SerializableConsumer<R>, SerializableConsumer<String>) - Method in interface com.vaadin.flow.data.binder.Result
-
Invokes either the first callback or the second one, depending on whether
this Result denotes a success or a failure, respectively.
- handleBinderValidationStatus(BinderValidationStatus<BEAN>) - Method in class com.vaadin.flow.data.binder.Binder
-
The default binder level status handler.
- handleDataRefreshEvent(DataChangeEvent.DataRefreshEvent<T>) - Method in class com.vaadin.flow.data.provider.DataCommunicator
-
- handleDataRefreshEvent(DataChangeEvent.DataRefreshEvent<T>) - Method in class com.vaadin.flow.data.provider.hierarchy.HierarchicalDataCommunicator
-
- handleError(HasValue<?, ?>, ValidationResult) - Method in class com.vaadin.flow.data.binder.Binder
-
Handles a validation error emitted when trying to write the value of the
given field.
- handleError(HasValue<?, ?>, ValidationResult) - Method in interface com.vaadin.flow.data.binder.BinderValidationErrorHandler
-
Handles a validation error emitted when trying to write the value of the
given field.
- handleError(HasValue<?, ?>, ValidationResult) - Method in class com.vaadin.flow.data.binder.DefaultBinderValidationErrorHandler
-
Handles a validation error emitted when trying to write the value of the
given field.
- handleException(HasValue<?, ?>, Exception) - Method in interface com.vaadin.flow.data.binder.BindingExceptionHandler
-
Produces a
BindingException
instance based on original
exception
and field as a subject of the exception.
- handleException(HasValue<?, ?>, Exception) - Method in class com.vaadin.flow.data.binder.DefaultBindingExceptionHandler
-
- handleFieldValueChange(Binder.Binding<BEAN, ?>) - Method in class com.vaadin.flow.data.binder.Binder
-
Informs the Binder that a value in Binding was changed.
- handleValidationStatus(BindingValidationStatus<?>) - Method in class com.vaadin.flow.data.binder.Binder
-
- has(T) - Method in interface com.vaadin.flow.data.provider.DataKeyMapper
-
Check whether this key mapper contains the given data object.
- has(V) - Method in class com.vaadin.flow.data.provider.KeyMapper
-
- hasChanges() - Method in class com.vaadin.flow.data.binder.Binder
-
- hasChildren(T) - Method in class com.vaadin.flow.data.provider.hierarchy.HierarchicalDataCommunicator
-
Returns whether given item has children.
- hasChildren(T) - Method in interface com.vaadin.flow.data.provider.hierarchy.HierarchicalDataProvider
-
Check whether a given item has any children associated with it.
- hasChildren(T) - Method in class com.vaadin.flow.data.provider.hierarchy.HierarchyMapper
-
Returns whether given item has children.
- hasChildren(T) - Method in class com.vaadin.flow.data.provider.hierarchy.TreeDataProvider
-
- HasDataGenerators<T> - Interface in com.vaadin.flow.data.provider
-
Defines the contract of adding and removing multiple
DataGenerator
s
to a given object.
- HasDataProvider<T> - Interface in com.vaadin.flow.data.binder
-
A generic interface for listing components that use a data provider for
showing data.
- HasDataView<T,F,V extends DataView<T>> - Interface in com.vaadin.flow.data.provider
-
- hasErrors() - Method in class com.vaadin.flow.data.binder.BinderValidationStatus
-
Gets whether the validation for the binder failed or not.
- hasExpandedItems() - Method in class com.vaadin.flow.data.provider.hierarchy.HierarchicalDataCommunicator
-
Returns true if there is any expanded items.
- hasExpandedItems() - Method in class com.vaadin.flow.data.provider.hierarchy.HierarchyMapper
-
Returns true if there is any expanded items.
- HasFilterableDataProvider<T,F> - Interface in com.vaadin.flow.data.binder
-
A generic interface for listing components that use a filterable data
provider for showing data.
- hashCode() - Method in class com.vaadin.flow.data.provider.DataCommunicator.Filter
-
- HasHierarchicalDataProvider<T> - Interface in com.vaadin.flow.data.provider.hierarchy
-
A generic interface for hierarchical listing components that use a data
provider for showing hierarchical data.
- HasItemComponents<T> - Interface in com.vaadin.flow.data.binder
-
Represents a component that can have additional components between the items.
- HasItemComponents.ItemComponent<T> - Interface in com.vaadin.flow.data.binder
-
- HasItems<T> - Interface in com.vaadin.flow.data.binder
-
Mixin interface for components that displays a collection of items.
- HasItemsAndComponents<T> - Interface in com.vaadin.flow.data.binder
-
Represents a component that display a collection of items and can have
additional components between the items.
- HasLazyDataView<T,F,V extends LazyDataView<T>> - Interface in com.vaadin.flow.data.provider
-
Interface that defines methods for fetching items lazily from a backend.
- HasListDataView<T,V extends ListDataView<T,?>> - Interface in com.vaadin.flow.data.provider
-
An interface for components that accept setting items in-memory and returns a
ListDataView
that provides information and allows operations on the
items.
- hasValidationErrors() - Method in class com.vaadin.flow.data.binder.StatusChangeEvent
-
Gets the associated validation status.
- HasValidator<V> - Interface in com.vaadin.flow.data.binder
-
A generic interface for field components and other user interface objects
that have a user-editable value that should be validated.
- HasValueChangeMode - Interface in com.vaadin.flow.data.value
-
Denotes that the component is able to change the way its value on the client
side is synchronized with the server side.
- hasZeroSize(Object) - Static method in class com.vaadin.flow.data.binder.RequiredFieldConfiguratorUtil
-
Checks whether the given object would be considered empty according to
the Size
constraint.
- HierarchicalArrayUpdater - Interface in com.vaadin.flow.data.provider.hierarchy
-
Hierarchical array update strategy aware class.
- HierarchicalArrayUpdater.HierarchicalUpdate - Interface in com.vaadin.flow.data.provider.hierarchy
-
Array updater strategy that is aware of hierarchical changes.
- HierarchicalCommunicationController<T> - Class in com.vaadin.flow.data.provider.hierarchy
-
HierarchicalCommunicationController controls all the communication to client.
- HierarchicalCommunicationController(String, DataKeyMapper<T>, HierarchyMapper<T, ?>, DataGenerator<T>, SerializableFunction<Integer, HierarchicalArrayUpdater.HierarchicalUpdate>, SerializableBiFunction<String, Range, Stream<T>>) - Constructor for class com.vaadin.flow.data.provider.hierarchy.HierarchicalCommunicationController
-
Constructs communication controller with support for hierarchical data
structure.
- HierarchicalConfigurableFilterDataProvider<T,Q,C> - Interface in com.vaadin.flow.data.provider.hierarchy
-
A hierarchical data provider that supports programmatically setting a filter
that will be applied to all queries.
- HierarchicalDataCommunicator<T> - Class in com.vaadin.flow.data.provider.hierarchy
-
Data communicator that handles requesting hierarchical data from
HierarchicalDataProvider
and sending it to client side.
- HierarchicalDataCommunicator(CompositeDataGenerator<T>, HierarchicalArrayUpdater, SerializableConsumer<JsonArray>, StateNode, SerializableSupplier<ValueProvider<T, String>>) - Constructor for class com.vaadin.flow.data.provider.hierarchy.HierarchicalDataCommunicator
-
- HierarchicalDataProvider<T,F> - Interface in com.vaadin.flow.data.provider.hierarchy
-
A common interface for fetching hierarchical data from a data source, such as
an in-memory collection or a backend database.
- HierarchicalQuery<T,F> - Class in com.vaadin.flow.data.provider.hierarchy
-
Immutable hierarchical query object used to request data from a backend.
- HierarchicalQuery(F, T) - Constructor for class com.vaadin.flow.data.provider.hierarchy.HierarchicalQuery
-
Constructs a new hierarchical query object with given filter and parent
node.
- HierarchicalQuery(int, int, List<QuerySortOrder>, Comparator<T>, F, T) - Constructor for class com.vaadin.flow.data.provider.hierarchy.HierarchicalQuery
-
Constructs a new hierarchical query object with given offset, limit,
sorting and filtering.
- HierarchyMapper<T,F> - Class in com.vaadin.flow.data.provider.hierarchy
-
Mapper for hierarchical data.
- HierarchyMapper(HierarchicalDataProvider<T, F>) - Constructor for class com.vaadin.flow.data.provider.hierarchy.HierarchyMapper
-
Constructs a new HierarchyMapper.
- IdentifierProvider<T> - Interface in com.vaadin.flow.data.provider
-
A callback interface that is used to provide the identifier of an item.
- identity() - Static method in interface com.vaadin.flow.data.converter.Converter
-
Returns a converter that returns its input as-is in both directions.
- identity() - Static method in interface com.vaadin.flow.data.provider.IdentifierProvider
-
Returns an identifier provider that always returns its input argument.
- ifError(SerializableConsumer<String>) - Method in interface com.vaadin.flow.data.binder.Result
-
Applies the consumer
if result is an error.
- ifOk(SerializableConsumer<R>) - Method in interface com.vaadin.flow.data.binder.Result
-
Applies the consumer
if result is not an error.
- initialize() - Method in interface com.vaadin.flow.data.provider.ArrayUpdater
-
Initialize the array.
- InMemoryDataProvider<T> - Interface in com.vaadin.flow.data.provider
-
A mixin interface for in-memory data providers.
- InMemoryDataProviderHelpers - Class in com.vaadin.flow.data.provider
-
- IntegerRangeValidator - Class in com.vaadin.flow.data.validator
-
Validator for validating that an
Integer
is inside a given range.
- IntegerRangeValidator(String, Integer, Integer) - Constructor for class com.vaadin.flow.data.validator.IntegerRangeValidator
-
Creates a validator for checking that an Integer is within a given range.
- intValue() - Method in enum com.vaadin.flow.data.binder.ErrorLevel
-
Integer representation of error severity for comparison.
- isAsRequiredEnabled() - Method in interface com.vaadin.flow.data.binder.Binder.Binding
-
Returns whether asRequired validator is currently enabled or not.
- isAsRequiredEnabled() - Method in class com.vaadin.flow.data.binder.Binder.BindingImpl
-
- isConvertBackToPresentation() - Method in interface com.vaadin.flow.data.binder.Binder.Binding
-
Returns whether the value is converted back to the presentation in
the field when a converter is used in binding.
- isConvertBackToPresentation() - Method in class com.vaadin.flow.data.binder.Binder.BindingImpl
-
- isDefinedSize() - Method in class com.vaadin.flow.data.provider.DataCommunicator
-
Returns whether defined or undefined size is used.
- isDeselectAllowed() - Method in interface com.vaadin.flow.data.selection.SelectionModel.Single
-
Gets whether it's allowed to deselect the selected row through the
UI.
- isError() - Method in class com.vaadin.flow.data.binder.BindingValidationStatus
-
Gets whether the validation failed or not.
- isError() - Method in interface com.vaadin.flow.data.binder.Result
-
Checks if the result denotes an error.
- isError() - Method in interface com.vaadin.flow.data.binder.ValidationResult
-
Checks if the result denotes an error.
- isExpanded(T) - Method in class com.vaadin.flow.data.provider.hierarchy.HierarchicalDataCommunicator
-
Returns whether given item is expanded.
- isExpanded(T) - Method in class com.vaadin.flow.data.provider.hierarchy.HierarchyMapper
-
Returns whether the given item is expanded.
- isFetchEnabled() - Method in class com.vaadin.flow.data.provider.DataCommunicator
-
Returns whether the data communicator will call Data Provider for
fetching the items and/or getting the items count, or ignore such a
calls.
- isFieldsValidationStatusChangeListenerEnabled() - Method in class com.vaadin.flow.data.binder.Binder
-
Returns if the bound fields implementing
HasValidator
subscribe
for field's
ValidationStatusChangeEvent
s and will
validate
upon receiving them.
- isFromClient() - Method in interface com.vaadin.flow.data.selection.SelectionEvent
-
Checks if this event originated from the client side.
- isInMemory() - Method in interface com.vaadin.flow.data.provider.BackEndDataProvider
-
- isInMemory() - Method in interface com.vaadin.flow.data.provider.DataProvider
-
Gets whether the DataProvider content all available in memory or does it
use some external backend.
- isInMemory() - Method in class com.vaadin.flow.data.provider.DataProviderWrapper
-
- isInMemory() - Method in class com.vaadin.flow.data.provider.hierarchy.AbstractBackEndHierarchicalDataProvider
-
- isInMemory() - Method in interface com.vaadin.flow.data.provider.InMemoryDataProvider
-
- isItemActive(T) - Method in class com.vaadin.flow.data.provider.DataCommunicator
-
Returns whether the given item is part of the active items.
- isItemCountEstimated() - Method in class com.vaadin.flow.data.provider.ItemCountChangeEvent
-
- isMaxValueIncluded() - Method in class com.vaadin.flow.data.validator.RangeValidator
-
Returns whether the maximum value is part of the accepted range.
- isMinValueIncluded() - Method in class com.vaadin.flow.data.validator.RangeValidator
-
Returns whether the minimum value is part of the accepted range.
- isNotifyOnChange() - Method in class com.vaadin.flow.data.provider.DataCommunicator.Filter
-
Returns whether to fire the item change event or not upon filter
changing.
- isOk() - Method in class com.vaadin.flow.data.binder.BinderValidationStatus
-
Gets whether validation for the binder passed or not.
- isPagingEnabled() - Method in class com.vaadin.flow.data.provider.DataCommunicator
-
Returns whether paged queries are enabled or not.
- isReadOnly() - Method in interface com.vaadin.flow.data.binder.Binder.Binding
-
Gets the current read-only status for this Binding.
- isReadOnly() - Method in class com.vaadin.flow.data.binder.Binder.BindingImpl
-
- isReadOnly() - Method in class com.vaadin.flow.data.binder.ReadOnlyHasValue
-
- isRefreshChildren() - Method in class com.vaadin.flow.data.provider.DataChangeEvent.DataRefreshEvent
-
Gets the a boolean whether the refresh is supposed to be
refreshChildren (in hierarchical data providers).
- isRequiredIndicatorVisible() - Method in class com.vaadin.flow.data.binder.ReadOnlyHasValue
-
- isSelected(T) - Method in interface com.vaadin.flow.data.selection.MultiSelect
-
Returns whether the given item is currently selected.
- isSelected(T) - Method in interface com.vaadin.flow.data.selection.SelectionModel
-
Returns whether the given item is currently selected.
- isSubProperty() - Method in interface com.vaadin.flow.data.binder.PropertyDefinition
-
Gets whether this property belongs to some other property in the property
set, or directly to the property set.
- isValid() - Method in class com.vaadin.flow.data.binder.Binder
-
Runs all currently configured field level validators, as well as all bean
level validators if a bean is currently set with
Binder.setBean(Object)
, and returns whether any of the validators
failed.
- isValid(String) - Method in class com.vaadin.flow.data.validator.EmailValidator
-
- isValid(T) - Method in class com.vaadin.flow.data.validator.RangeValidator
-
Returns whether the given value lies in the valid range.
- isValid(String) - Method in class com.vaadin.flow.data.validator.RegexpValidator
-
Returns whether the given string matches the regular expression.
- isValidatorsDisabled() - Method in interface com.vaadin.flow.data.binder.Binder.Binding
-
Returns if validators are currently disabled or not.
- isValidatorsDisabled() - Method in class com.vaadin.flow.data.binder.Binder.BindingImpl
-
- isValidatorsDisabled() - Method in class com.vaadin.flow.data.binder.Binder
-
Returns if the validators including bean level validators are disabled or
enabled for this Binder.
- itemCountChanged(ItemCountChangeEvent) - Method in interface com.vaadin.flow.data.provider.ItemCountChangeListener
-
Invoked for changes in the data size.
- ItemCountChangeEvent<T extends Component> - Class in com.vaadin.flow.data.provider
-
Event describing the item count change for a component.
- ItemCountChangeEvent(T, int, boolean) - Constructor for class com.vaadin.flow.data.provider.ItemCountChangeEvent
-
Creates a new event using the given source and indicator whether the
event originated from the client side or the server side.
- ItemCountChangeListener - Interface in com.vaadin.flow.data.provider
-
Listener interface for getting updates on data item count changes.
- RangeValidator<T> - Class in com.vaadin.flow.data.validator
-
Verifies that a value is within the given range.
- RangeValidator(String, Comparator<? super T>, T, T) - Constructor for class com.vaadin.flow.data.validator.RangeValidator
-
Creates a new range validator of the given type.
- read(BEAN) - Method in interface com.vaadin.flow.data.binder.Binder.Binding
-
Reads the value from given item and stores it to the bound field.
- read(BEAN) - Method in class com.vaadin.flow.data.binder.Binder.BindingImpl
-
- readBean(BEAN) - Method in class com.vaadin.flow.data.binder.Binder
-
Reads the bound property values from the given bean to the corresponding
fields.
- ReadOnlyHasValue<V> - Class in com.vaadin.flow.data.binder
-
Generic
HasValue
to use any type of component with Vaadin data
binding.
- ReadOnlyHasValue(SerializableConsumer<V>, V) - Constructor for class com.vaadin.flow.data.binder.ReadOnlyHasValue
-
Creates new ReadOnlyHasValue
- ReadOnlyHasValue(SerializableConsumer<V>) - Constructor for class com.vaadin.flow.data.binder.ReadOnlyHasValue
-
Creates new ReadOnlyHasValue
with null
as an empty value.
- refresh(T) - Method in class com.vaadin.flow.data.provider.DataCommunicator
-
Informs the DataCommunicator that a data object has been updated.
- refresh(T) - Method in interface com.vaadin.flow.data.provider.DataKeyMapper
-
Updates any existing mappings of given data object.
- refresh(V) - Method in class com.vaadin.flow.data.provider.KeyMapper
-
- refreshAll() - Method in class com.vaadin.flow.data.provider.AbstractDataProvider
-
- refreshAll() - Method in class com.vaadin.flow.data.provider.AbstractDataView
-
- refreshAll() - Method in interface com.vaadin.flow.data.provider.DataProvider
-
Refreshes all data based on currently available data in the underlying
provider.
- refreshAll() - Method in class com.vaadin.flow.data.provider.DataProviderWrapper
-
- refreshAll() - Method in interface com.vaadin.flow.data.provider.DataView
-
Notifies the component that all the items should be refreshed.
- refreshData(T) - Method in class com.vaadin.flow.data.provider.AbstractComponentDataGenerator
-
- refreshData(T) - Method in class com.vaadin.flow.data.provider.CompositeDataGenerator
-
- refreshData(T) - Method in interface com.vaadin.flow.data.provider.DataGenerator
-
Informs the DataGenerator
that a data object has been updated.
- refreshItem(T, boolean) - Method in class com.vaadin.flow.data.provider.AbstractDataProvider
-
- refreshItem(T) - Method in class com.vaadin.flow.data.provider.AbstractDataProvider
-
- refreshItem(T) - Method in class com.vaadin.flow.data.provider.AbstractDataView
-
- refreshItem(T) - Method in interface com.vaadin.flow.data.provider.DataProvider
-
Refreshes the given item.
- refreshItem(T, boolean) - Method in interface com.vaadin.flow.data.provider.DataProvider
-
Refreshes the given item and all of the children of the item as well.
- refreshItem(T) - Method in class com.vaadin.flow.data.provider.DataProviderWrapper
-
- refreshItem(T) - Method in interface com.vaadin.flow.data.provider.DataView
-
Notifies the component that the item has been updated and thus should be
refreshed.
- RegexpValidator - Class in com.vaadin.flow.data.validator
-
A string validator comparing the string against a Java regular expression.
- RegexpValidator(String, String) - Constructor for class com.vaadin.flow.data.validator.RegexpValidator
-
Creates a validator for checking that the regular expression matches the
complete string to validate.
- RegexpValidator(String, String, boolean) - Constructor for class com.vaadin.flow.data.validator.RegexpValidator
-
Creates a validator for checking that the regular expression matches the
string to validate.
- registerChildren(T, List<T>) - Method in class com.vaadin.flow.data.provider.hierarchy.HierarchyMapper
-
Register parent and children items into inner structures.
- registerRenderedComponent(String, Component) - Method in class com.vaadin.flow.data.provider.AbstractComponentDataGenerator
-
Appends the component to the container and registers it for future use
during the lifecycle of the generator.
- remove(T) - Method in interface com.vaadin.flow.data.provider.DataKeyMapper
-
Removes a data object from the key mapping.
- remove(V) - Method in class com.vaadin.flow.data.provider.KeyMapper
-
Removes object from the mapper.
- removeAll() - Method in interface com.vaadin.flow.data.provider.DataKeyMapper
-
Removes all data objects from the key mapping.
- removeAll() - Method in class com.vaadin.flow.data.provider.KeyMapper
-
Removes all objects from the mapper.
- removeBean() - Method in class com.vaadin.flow.data.binder.Binder
-
Removes the currently set bean and clears bound fields.
- removeBinding(HasValue<?, ?>) - Method in class com.vaadin.flow.data.binder.Binder
-
Finds and removes all Bindings for the given field.
- removeBinding(Binder.Binding<BEAN, ?>) - Method in class com.vaadin.flow.data.binder.Binder
-
Removes the given Binding from this Binder.
- removeBinding(String) - Method in class com.vaadin.flow.data.binder.Binder
-
Finds and removes the Binding for the given property name.
- removeBindingInternal(Binder.Binding<BEAN, ?>) - Method in class com.vaadin.flow.data.binder.Binder
-
Removes (internally) the Binding
from the bound properties map
(if present) and from the list of Binding
s.
- removeChildren(Object) - Method in class com.vaadin.flow.data.provider.hierarchy.HierarchyMapper
-
Removes all children of an item identified by a given id.
- removeComponentFilterAndSortComparator(Component) - Static method in class com.vaadin.flow.data.provider.DataViewUtils
-
Removes the in-memory filter and sort comparator from a given component
instance.
- removeFilters() - Method in class com.vaadin.flow.data.provider.AbstractListDataView
-
- removeFilters() - Method in interface com.vaadin.flow.data.provider.ListDataView
-
Removes all in-memory filters set or added.
- removeItem(T) - Method in class com.vaadin.flow.data.provider.AbstractListDataView
-
- removeItem(T) - Method in class com.vaadin.flow.data.provider.hierarchy.TreeData
-
Remove a given item from this structure.
- removeItem(T) - Method in interface com.vaadin.flow.data.provider.ListDataView
-
Remove an item from the data list.
- removeItems(Collection<T>) - Method in class com.vaadin.flow.data.provider.AbstractListDataView
-
- removeItems(Collection<T>) - Method in interface com.vaadin.flow.data.provider.ListDataView
-
Remove multiple items from the data list.
- removeSorting() - Method in class com.vaadin.flow.data.provider.AbstractListDataView
-
- removeSorting() - Method in interface com.vaadin.flow.data.provider.ListDataView
-
Removes any default sorting that has been set or added previously.
- RequiredFieldConfigurator - Interface in com.vaadin.flow.data.binder
-
- RequiredFieldConfiguratorUtil - Class in com.vaadin.flow.data.binder
-
- reset() - Method in class com.vaadin.flow.data.provider.DataCommunicator
-
Resets all the data.
- reset() - Method in class com.vaadin.flow.data.provider.hierarchy.HierarchicalDataCommunicator
-
Resets all the data.
- restoreBeanState(BEAN, Map<Binder.Binding<BEAN, ?>, Object>) - Method in class com.vaadin.flow.data.binder.Binder
-
Restores the state of the bean from the given values.
- Result<R> - Interface in com.vaadin.flow.data.binder
-
Represents the result of an operation that might fail, such as type
conversion.
- select(T...) - Method in interface com.vaadin.flow.data.selection.MultiSelect
-
Adds the given items to the set of currently selected items.
- select(Iterable<T>) - Method in interface com.vaadin.flow.data.selection.MultiSelect
-
Adds the given items to the set of currently selected items.
- select(T) - Method in interface com.vaadin.flow.data.selection.SelectionModel.Multi
-
Adds the given item to the set of currently selected items.
- select(T) - Method in interface com.vaadin.flow.data.selection.SelectionModel
-
Selects the given item.
- select(T) - Method in interface com.vaadin.flow.data.selection.SelectionModel.Single
-
Selects the given item.
- selectAll() - Method in interface com.vaadin.flow.data.selection.SelectionModel.Multi
-
Selects all available the items.
- selectionChange(MultiSelectionEvent<C, T>) - Method in interface com.vaadin.flow.data.selection.MultiSelectionListener
-
Invoked when the selection has changed by the user or programmatically.
- selectionChange(SelectionEvent<C, T>) - Method in interface com.vaadin.flow.data.selection.SelectionListener
-
Invoked when the selection has changed.
- selectionChange(SingleSelectionEvent<C, T>) - Method in interface com.vaadin.flow.data.selection.SingleSelectionListener
-
Invoked when selection has been changed.
- SelectionEvent<C extends Component,T> - Interface in com.vaadin.flow.data.selection
-
A selection event that unifies the way to access to selection event for multi
selection and single selection components (in case when only one selected
item is required).
- SelectionListener<C extends Component,T> - Interface in com.vaadin.flow.data.selection
-
A listener for SelectionEvent
.
- SelectionModel<C extends Component,T> - Interface in com.vaadin.flow.data.selection
-
Models the selection logic of a Listing
component.
- SelectionModel.Multi<C extends Component,T> - Interface in com.vaadin.flow.data.selection
-
A selection model in which multiple items can be selected at the same
time.
- SelectionModel.Single<C extends Component,T> - Interface in com.vaadin.flow.data.selection
-
A selection model in which at most one item can be selected at a time.
- selectItems(T...) - Method in interface com.vaadin.flow.data.selection.SelectionModel.Multi
-
Adds the given items to the set of currently selected items.
- set(int, List<JsonValue>) - Method in interface com.vaadin.flow.data.provider.ArrayUpdater.Update
-
Sets the items
at the start
position.
- set(int, List<JsonValue>, String) - Method in interface com.vaadin.flow.data.provider.hierarchy.HierarchicalArrayUpdater.HierarchicalUpdate
-
Sets the items
at the start
position.
- setAsRequiredEnabled(boolean) - Method in interface com.vaadin.flow.data.binder.Binder.Binding
-
Enable or disable asRequired validator.
- setAsRequiredEnabled(boolean) - Method in class com.vaadin.flow.data.binder.Binder.BindingImpl
-
- setBackEndSorting(List<QuerySortOrder>) - Method in class com.vaadin.flow.data.provider.DataCommunicator
-
- setBackEndSorting(List<QuerySortOrder>) - Method in class com.vaadin.flow.data.provider.hierarchy.HierarchicalDataCommunicator
-
- setBackEndSorting(List<QuerySortOrder>) - Method in class com.vaadin.flow.data.provider.hierarchy.HierarchyMapper
-
Sets the current back-end sorting.
- setBean(BEAN) - Method in class com.vaadin.flow.data.binder.Binder
-
Binds the given bean to all the fields added to this Binder.
- setBindingExceptionHandler(BindingExceptionHandler) - Method in class com.vaadin.flow.data.binder.Binder
-
- setComponentFilter(Component, SerializablePredicate<T>) - Static method in class com.vaadin.flow.data.provider.DataViewUtils
-
Sets the in-memory filter to a given component instance.
- setComponentSortComparator(Component, SerializableComparator<T>) - Static method in class com.vaadin.flow.data.provider.DataViewUtils
-
Sets the in-memory sort comparator to a given component instance.
- setConvertBackToPresentation(boolean) - Method in interface com.vaadin.flow.data.binder.Binder.Binding
-
Define whether the value should be converted back to the presentation
in the field when a converter is used in binding.
- setConvertBackToPresentation(boolean) - Method in class com.vaadin.flow.data.binder.Binder.BindingImpl
-
- setCountCallback(CallbackDataProvider.CountCallback<T, ?>) - Method in class com.vaadin.flow.data.provider.DataCommunicator
-
Sets the size callback to be used and switches the component to exact row
count.
- setDataProvider(DataProvider<T, ?>) - Method in interface com.vaadin.flow.data.binder.HasDataProvider
-
Sets the data provider for this listing.
- setDataProvider(DataProvider<T, F>) - Method in interface com.vaadin.flow.data.binder.HasFilterableDataProvider
-
Sets the data provider for this listing.
- setDataProvider(DataProvider<T, C>, SerializableFunction<F, C>) - Method in interface com.vaadin.flow.data.binder.HasFilterableDataProvider
-
Sets the data provider and filter converter for this listing.
- setDataProvider(DataProvider<T, F>, F, boolean) - Method in class com.vaadin.flow.data.provider.DataCommunicator
-
Sets the current data provider for this DataCommunicator.
- setDataProvider(DataProvider<T, F>, F) - Method in class com.vaadin.flow.data.provider.DataCommunicator
-
Sets the current data provider for this DataCommunicator.
- setDataProvider(DataProvider<T, ?>) - Method in interface com.vaadin.flow.data.provider.hierarchy.HasHierarchicalDataProvider
-
- setDataProvider(HierarchicalDataProvider<T, ?>) - Method in interface com.vaadin.flow.data.provider.hierarchy.HasHierarchicalDataProvider
-
Sets the hierarchical data provider for this listing.
- setDataProvider(HierarchicalDataProvider<T, F>, F) - Method in class com.vaadin.flow.data.provider.hierarchy.HierarchicalDataCommunicator
-
Set the current hierarchical data provider for this communicator.
- setDataProvider(DataProvider<T, F>, F) - Method in class com.vaadin.flow.data.provider.hierarchy.HierarchicalDataCommunicator
-
Set the current hierarchical data provider for this communicator.
- setDefinedSize(boolean) - Method in class com.vaadin.flow.data.provider.DataCommunicator
-
Changes between defined and undefined size and clears any previously set
count callback.
- setDeselectAllowed(boolean) - Method in interface com.vaadin.flow.data.selection.SelectionModel.Single
-
Sets whether it's allowed to deselect the selected row through the
UI.
- setErrorTheme(HasValue<?, ?>, ValidationResult) - Method in class com.vaadin.flow.data.binder.DefaultBinderValidationErrorHandler
-
Sets error theme for the field
based on result
.
- setFetchEnabled(boolean) - Method in class com.vaadin.flow.data.provider.DataCommunicator
-
Sets whether the data communicator will call Data Provider for fetching
the items and/or getting the items count, or ignore such a calls.
- setFieldsValidationStatusChangeListenerEnabled(boolean) - Method in class com.vaadin.flow.data.binder.Binder
-
Control whether bound fields implementing
HasValidator
subscribe
for field's
ValidationStatusChangeEvent
s and will
validate
upon receiving them.
- setFilter(SerializablePredicate<T>) - Method in class com.vaadin.flow.data.provider.AbstractListDataView
-
- setFilter(C) - Method in interface com.vaadin.flow.data.provider.ConfigurableFilterDataProvider
-
Sets the filter to use for all queries handled by this data provider.
- setFilter(C) - Method in class com.vaadin.flow.data.provider.ConfigurableFilterDataProviderWrapper
-
- setFilter(F) - Method in class com.vaadin.flow.data.provider.hierarchy.HierarchicalDataCommunicator
-
- setFilter(Object) - Method in class com.vaadin.flow.data.provider.hierarchy.HierarchyMapper
-
Sets the current filter.
- setFilter(SerializablePredicate<T>) - Method in class com.vaadin.flow.data.provider.hierarchy.TreeDataProvider
-
- setFilter(SerializablePredicate<T>) - Method in interface com.vaadin.flow.data.provider.InMemoryDataProvider
-
Sets a filter to be applied to all queries.
- setFilter(ValueProvider<T, V>, SerializablePredicate<V>) - Method in interface com.vaadin.flow.data.provider.InMemoryDataProvider
-
Sets a filter for an item property.
- setFilter(SerializablePredicate<T>) - Method in class com.vaadin.flow.data.provider.ListDataProvider
-
- setFilter(SerializablePredicate<T>) - Method in interface com.vaadin.flow.data.provider.ListDataView
-
Sets a filter to be applied to the data.
- setFilterByValue(ValueProvider<T, V>, V) - Method in interface com.vaadin.flow.data.provider.InMemoryDataProvider
-
Sets a filter that requires an item property to have a specific value.
- setIdentifierGetter(ValueProvider<T, Object>) - Method in interface com.vaadin.flow.data.provider.DataKeyMapper
-
Takes identifier getter into use and updates existing mappings
- setIdentifierGetter(ValueProvider<V, Object>) - Method in class com.vaadin.flow.data.provider.KeyMapper
-
- setIdentifierProvider(IdentifierProvider<T>) - Method in class com.vaadin.flow.data.provider.AbstractDataView
-
- setIdentifierProvider(IdentifierProvider<T>) - Method in interface com.vaadin.flow.data.provider.DataView
-
Sets an identifier provider, which returns an identifier for the given
item.
- setInMemorySorting(SerializableComparator<T>) - Method in class com.vaadin.flow.data.provider.DataCommunicator
-
Sets the
Comparator
to use with in-memory sorting.
- setInMemorySorting(SerializableComparator<T>) - Method in class com.vaadin.flow.data.provider.hierarchy.HierarchicalDataCommunicator
-
- setInMemorySorting(Comparator<T>) - Method in class com.vaadin.flow.data.provider.hierarchy.HierarchyMapper
-
Sets the current in-memory sorting.
- setItemCountEstimate(int) - Method in class com.vaadin.flow.data.provider.AbstractLazyDataView
-
- setItemCountEstimate(int) - Method in class com.vaadin.flow.data.provider.DataCommunicator
-
Sets the item count estimate to use and switches component to undefined
size.
- setItemCountEstimate(int) - Method in interface com.vaadin.flow.data.provider.LazyDataView
-
Sets the estimated item count for the component.
- setItemCountEstimateIncrease(int) - Method in class com.vaadin.flow.data.provider.AbstractLazyDataView
-
- setItemCountEstimateIncrease(int) - Method in class com.vaadin.flow.data.provider.DataCommunicator
-
Sets the item count estimate increase to use and switches the component
to undefined size if not yet used.
- setItemCountEstimateIncrease(int) - Method in interface com.vaadin.flow.data.provider.LazyDataView
-
Sets how much the item count estimate is increased once the previous item
count estimate has been reached.
- setItemCountFromDataProvider() - Method in class com.vaadin.flow.data.provider.AbstractLazyDataView
-
- setItemCountFromDataProvider() - Method in interface com.vaadin.flow.data.provider.LazyDataView
-
- setItemCountUnknown() - Method in class com.vaadin.flow.data.provider.AbstractLazyDataView
-
- setItemCountUnknown() - Method in interface com.vaadin.flow.data.provider.LazyDataView
-
Switches the component to automatically extend the number of items as the
previous end is almost reached.
- setItems(Collection<T>) - Method in interface com.vaadin.flow.data.binder.HasDataProvider
-
- setItems(Collection<T>) - Method in interface com.vaadin.flow.data.binder.HasItems
-
Sets the data items of this component provided as a collection.
- setItems(T...) - Method in interface com.vaadin.flow.data.binder.HasItems
-
Sets the data items of this listing.
- setItems(Stream<T>) - Method in interface com.vaadin.flow.data.binder.HasItems
-
Sets the data items of this listing provided as a stream.
- setItems(DataProvider<T, F>) - Method in interface com.vaadin.flow.data.provider.HasDataView
-
Set a generic data provider for the component to use and returns the base
DataView
that provides API to get information on the items.
- setItems(InMemoryDataProvider<T>) - Method in interface com.vaadin.flow.data.provider.HasDataView
-
Sets an in-memory data provider for the component to use
- setItems(CallbackDataProvider.FetchCallback<T, F>) - Method in interface com.vaadin.flow.data.provider.HasLazyDataView
-
Supply items lazily with a callback from a backend.
- setItems(CallbackDataProvider.FetchCallback<T, F>, CallbackDataProvider.CountCallback<T, F>) - Method in interface com.vaadin.flow.data.provider.HasLazyDataView
-
Supply items lazily with callbacks: the first one fetches the items based
on offset, limit and an optional filter, the second provides the exact
count of items in the backend.
- setItems(BackEndDataProvider<T, F>) - Method in interface com.vaadin.flow.data.provider.HasLazyDataView
-
- setItems(ListDataProvider<T>) - Method in interface com.vaadin.flow.data.provider.HasListDataView
-
Sets a ListDataProvider for the component to use and returns a
ListDataView
that provides information and allows operations on
the items.
- setItems(Collection<T>) - Method in interface com.vaadin.flow.data.provider.HasListDataView
-
Sets the items from the given Collection and returns a
ListDataView
that provides information and allows operations on
the items.
- setItems(T...) - Method in interface com.vaadin.flow.data.provider.HasListDataView
-
Sets the items of this component.
- setItems(Collection<T>, ValueProvider<T, Collection<T>>) - Method in interface com.vaadin.flow.data.provider.hierarchy.HasHierarchicalDataProvider
-
Sets the root data items of this component provided as a collection and
recursively populates them with child items with the given value
provider.
- setItems(Stream<T>, ValueProvider<T, Stream<T>>) - Method in interface com.vaadin.flow.data.provider.hierarchy.HasHierarchicalDataProvider
-
Sets the root data items of this component provided as a stream and
recursively populates them with child items with the given value
provider.
- setKeyMapper(DataKeyMapper<T>) - Method in class com.vaadin.flow.data.provider.DataCommunicator
-
- setMaxLength(Integer) - Method in class com.vaadin.flow.data.validator.StringLengthValidator
-
Sets the maximum permissible length of the string.
- setMaxValue(T) - Method in class com.vaadin.flow.data.validator.RangeValidator
-
Sets the maximum value of the range.
- setMaxValueIncluded(boolean) - Method in class com.vaadin.flow.data.validator.RangeValidator
-
Sets whether the maximum value is part of the accepted range.
- setMinLength(Integer) - Method in class com.vaadin.flow.data.validator.StringLengthValidator
-
Sets the minimum permissible length.
- setMinValue(T) - Method in class com.vaadin.flow.data.validator.RangeValidator
-
Sets the minimum value of the range.
- setMinValueIncluded(boolean) - Method in class com.vaadin.flow.data.validator.RangeValidator
-
Sets whether the minimum value is part of the accepted range.
- setPageSize(int) - Method in class com.vaadin.flow.data.provider.DataCommunicator
-
Sets the page size that is used to fetch items.
- setPagingEnabled(boolean) - Method in class com.vaadin.flow.data.provider.DataCommunicator
-
Sets whether paged queries or offset/limit queries will be used.
- setParent(T, T) - Method in class com.vaadin.flow.data.provider.hierarchy.TreeData
-
Moves an item to become a child of the given parent item.
- setParentRequestedRange(int, int, T) - Method in class com.vaadin.flow.data.provider.hierarchy.HierarchicalDataCommunicator
-
- setReadOnly(boolean) - Method in interface com.vaadin.flow.data.binder.Binder.Binding
-
Sets the read-only status on for this Binding.
- setReadOnly(boolean) - Method in class com.vaadin.flow.data.binder.Binder.BindingImpl
-
- setReadOnly(boolean) - Method in class com.vaadin.flow.data.binder.Binder
-
Sets the read only state to the given value for all currently bound
fields.
- setReadOnly(boolean) - Method in class com.vaadin.flow.data.binder.ReadOnlyHasValue
-
- setRequestedRange(int, int) - Method in class com.vaadin.flow.data.provider.DataCommunicator
-
Sets the requested range of data to be sent.
- setRequestRange(int, int) - Method in class com.vaadin.flow.data.provider.hierarchy.HierarchicalCommunicationController
-
- setRequiredConfigurator(RequiredFieldConfigurator) - Method in class com.vaadin.flow.data.binder.BeanValidationBinder
-
- setRequiredIndicatorVisible(boolean) - Method in class com.vaadin.flow.data.binder.ReadOnlyHasValue
-
- setResendEntireRange(boolean) - Method in class com.vaadin.flow.data.provider.hierarchy.HierarchicalCommunicationController
-
- setSelectedItem(T) - Method in interface com.vaadin.flow.data.selection.SelectionModel.Single
-
Sets the current selection to the given item, or clears selection if
given null
.
- setSortComparator(SerializableComparator<T>) - Method in class com.vaadin.flow.data.provider.AbstractListDataView
-
- setSortComparator(SerializableComparator<T>) - Method in class com.vaadin.flow.data.provider.hierarchy.TreeDataProvider
-
- setSortComparator(SerializableComparator<T>) - Method in interface com.vaadin.flow.data.provider.InMemoryDataProvider
-
Sets the comparator to use as the default sorting for this data provider.
- setSortComparator(SerializableComparator<T>) - Method in class com.vaadin.flow.data.provider.ListDataProvider
-
- setSortComparator(SerializableComparator<T>) - Method in interface com.vaadin.flow.data.provider.ListDataView
-
Sets the comparator to use as the default sorting.
- setSortOrder(ValueProvider<T, V1>, SortDirection) - Method in class com.vaadin.flow.data.provider.AbstractListDataView
-
- setSortOrder(QuerySortOrder) - Method in interface com.vaadin.flow.data.provider.BackEndDataProvider
-
Sets a single sort order to use as the default sorting for this data
provider.
- setSortOrder(ValueProvider<T, V>, SortDirection) - Method in interface com.vaadin.flow.data.provider.InMemoryDataProvider
-
Sets the property and direction to use as the default sorting for this
data provider.
- setSortOrder(ValueProvider<T, V1>, SortDirection) - Method in interface com.vaadin.flow.data.provider.ListDataView
-
Sets the property and direction to use as the default sorting.
- setSortOrders(List<QuerySortOrder>) - Method in class com.vaadin.flow.data.provider.AbstractBackEndDataProvider
-
- setSortOrders(List<QuerySortOrder>) - Method in interface com.vaadin.flow.data.provider.BackEndDataProvider
-
Sets a list of sort orders to use as the default sorting for this data
provider.
- setSortOrders(QuerySortOrderBuilder) - Method in interface com.vaadin.flow.data.provider.BackEndDataProvider
-
- setSortOrders(List<QuerySortOrder>) - Method in class com.vaadin.flow.data.provider.hierarchy.AbstractBackEndHierarchicalDataProvider
-
- setStatusLabel(HasText) - Method in class com.vaadin.flow.data.binder.Binder
-
Sets the label to show the binder level validation errors not related to
any specific field.
- Setter<BEAN,FIELDVALUE> - Interface in com.vaadin.flow.data.binder
-
The function to write the field value to the bean property
- setTreeData(TreeData<T>) - Method in interface com.vaadin.flow.data.provider.hierarchy.HasHierarchicalDataProvider
-
- setValidationErrorHandler(BinderValidationErrorHandler) - Method in class com.vaadin.flow.data.binder.Binder
-
Sets the validation error handler to update error status for fields when
the user input is validated.
- setValidationStatusHandler(BinderValidationStatusHandler<BEAN>) - Method in class com.vaadin.flow.data.binder.Binder
-
Sets the status handler to track form status changes.
- setValidatorsDisabled(boolean) - Method in interface com.vaadin.flow.data.binder.Binder.Binding
-
Define whether validators are disabled or enabled for this specific
binding.
- setValidatorsDisabled(boolean) - Method in class com.vaadin.flow.data.binder.Binder.BindingImpl
-
- setValidatorsDisabled(boolean) - Method in class com.vaadin.flow.data.binder.Binder
-
Control whether validators including bean level validators are disabled
or enabled globally for this Binder.
- setValue(V) - Method in class com.vaadin.flow.data.binder.ReadOnlyHasValue
-
- setValue(Set<T>) - Method in interface com.vaadin.flow.data.selection.MultiSelect
-
- setValueChangeMode(ValueChangeMode) - Method in interface com.vaadin.flow.data.value.HasValueChangeMode
-
Sets new value change mode for the component.
- setValueChangeTimeout(int) - Method in interface com.vaadin.flow.data.value.HasValueChangeMode
-
- ShortRangeValidator - Class in com.vaadin.flow.data.validator
-
Validator for validating that an
Short
is inside a given range.
- ShortRangeValidator(String, Short, Short) - Constructor for class com.vaadin.flow.data.validator.ShortRangeValidator
-
Creates a validator for checking that an Short is within a given range.
- SingleSelect<C extends Component,T> - Interface in com.vaadin.flow.data.selection
-
Single selection component whose selection is treated as a value.
- SingleSelectionEvent<C extends Component,T> - Class in com.vaadin.flow.data.selection
-
Fired when the selection changes in a listing component.
- SingleSelectionEvent(C, SingleSelect<C, T>, T, boolean) - Constructor for class com.vaadin.flow.data.selection.SingleSelectionEvent
-
Creates a new selection change event in a component.
- SingleSelectionListener<C extends Component,T> - Interface in com.vaadin.flow.data.selection
-
A listener for listening to selection changes on a single selection
component.
- SIZE - Static variable in interface com.vaadin.flow.data.binder.RequiredFieldConfigurator
-
Configurator which is aware of Size annotation with
min()> 0
presence for a property where the size of the default
value is 0.
- size(Query<T, F>) - Method in class com.vaadin.flow.data.provider.AbstractBackEndDataProvider
-
- size(Query<T, F>) - Method in interface com.vaadin.flow.data.provider.DataProvider
-
Gets the amount of data in this DataProvider.
- size(Query<T, F>) - Method in class com.vaadin.flow.data.provider.DataProviderWrapper
-
- size(Query<T, F>) - Method in interface com.vaadin.flow.data.provider.hierarchy.HierarchicalDataProvider
-
Get the number of immediate child data items for the parent item returned
by a given query.
- size(Query<T, SerializablePredicate<T>>) - Method in class com.vaadin.flow.data.provider.ListDataProvider
-
- sizeInBackEnd(Query<T, F>) - Method in class com.vaadin.flow.data.provider.AbstractBackEndDataProvider
-
Counts the number of items available in the back end.
- sizeInBackEnd(Query<T, F>) - Method in class com.vaadin.flow.data.provider.CallbackDataProvider
-
- SortDirection - Enum in com.vaadin.flow.data.provider
-
Describes sorting direction.
- SortEvent<T extends Component,S extends SortOrder<?>> - Class in com.vaadin.flow.data.event
-
- SortEvent(T, List<S>, boolean) - Constructor for class com.vaadin.flow.data.event.SortEvent
-
Creates a new sort order change event with a sort order list.
- SortEvent.SortNotifier<T extends Component,S extends SortOrder<?>> - Interface in com.vaadin.flow.data.event
-
The interface for adding and removing listeners for
SortEvents
.
- SortOrder<T> - Class in com.vaadin.flow.data.provider
-
Sorting information for one field.
- SortOrder(T, SortDirection) - Constructor for class com.vaadin.flow.data.provider.SortOrder
-
Constructs a field sorting information.
- SortOrderBuilder<T extends SortOrder<V>,V> - Class in com.vaadin.flow.data.provider
-
Base class for helper classes with fluent API for constructing sort order
lists.
- SortOrderBuilder() - Constructor for class com.vaadin.flow.data.provider.SortOrderBuilder
-
- startUpdate(int) - Method in interface com.vaadin.flow.data.provider.ArrayUpdater
-
Starts update of an array.
- startUpdate(int) - Method in interface com.vaadin.flow.data.provider.hierarchy.HierarchicalArrayUpdater
-
- statusChange(BinderValidationStatus<BEAN>) - Method in interface com.vaadin.flow.data.binder.BinderValidationStatusHandler
-
Invoked when the validation status has changed in binder.
- statusChange(BindingValidationStatus<?>) - Method in interface com.vaadin.flow.data.binder.BindingValidationStatusHandler
-
Invoked when the validation status has changed in a binding.
- statusChange(StatusChangeEvent) - Method in interface com.vaadin.flow.data.binder.StatusChangeListener
-
Notifies the listener about status change event
.
- StatusChangeEvent - Class in com.vaadin.flow.data.binder
-
Binder status change event.
- StatusChangeEvent(Binder<?>, boolean) - Constructor for class com.vaadin.flow.data.binder.StatusChangeEvent
-
Create a new status change event for given binder
, storing
information of whether the change that triggered this event caused
validation errors.
- StatusChangeListener - Interface in com.vaadin.flow.data.binder
-
Listener interface for status change events from binder.
- StringLengthValidator - Class in com.vaadin.flow.data.validator
-
Verifies that the length of a string is within the given range.
- StringLengthValidator(String, Integer, Integer) - Constructor for class com.vaadin.flow.data.validator.StringLengthValidator
-
Creates a new StringLengthValidator with a given error message and
minimum and maximum length limits.
- StringToBigDecimalConverter - Class in com.vaadin.flow.data.converter
-
- StringToBigDecimalConverter(String) - Constructor for class com.vaadin.flow.data.converter.StringToBigDecimalConverter
-
Creates a new converter instance with the given error message.
- StringToBigDecimalConverter(BigDecimal, String) - Constructor for class com.vaadin.flow.data.converter.StringToBigDecimalConverter
-
Creates a new converter instance with the given presentation value for
empty string and error message.
- StringToBigDecimalConverter(ErrorMessageProvider) - Constructor for class com.vaadin.flow.data.converter.StringToBigDecimalConverter
-
Creates a new converter instance with the given error message provider.
- StringToBigDecimalConverter(BigDecimal, ErrorMessageProvider) - Constructor for class com.vaadin.flow.data.converter.StringToBigDecimalConverter
-
Creates a new converter instance with the given presentation value for
empty string and error message provider.
- StringToBigIntegerConverter - Class in com.vaadin.flow.data.converter
-
- StringToBigIntegerConverter(String) - Constructor for class com.vaadin.flow.data.converter.StringToBigIntegerConverter
-
Creates a new converter instance with the given error message.
- StringToBigIntegerConverter(BigInteger, String) - Constructor for class com.vaadin.flow.data.converter.StringToBigIntegerConverter
-
Creates a new converter instance with the given presentation value for
empty string and error message.
- StringToBigIntegerConverter(ErrorMessageProvider) - Constructor for class com.vaadin.flow.data.converter.StringToBigIntegerConverter
-
Creates a new converter instance with the given error message provider.
- StringToBigIntegerConverter(BigInteger, ErrorMessageProvider) - Constructor for class com.vaadin.flow.data.converter.StringToBigIntegerConverter
-
Creates a new converter instance with the given presentation value for
empty string and error message provider.
- StringToBooleanConverter - Class in com.vaadin.flow.data.converter
-
- StringToBooleanConverter(String) - Constructor for class com.vaadin.flow.data.converter.StringToBooleanConverter
-
Creates converter with default string representations - "true" and
"false".
- StringToBooleanConverter(ErrorMessageProvider) - Constructor for class com.vaadin.flow.data.converter.StringToBooleanConverter
-
Creates a new converter instance with the given error message provider.
- StringToBooleanConverter(String, String, String) - Constructor for class com.vaadin.flow.data.converter.StringToBooleanConverter
-
Creates converter with custom string representation.
- StringToBooleanConverter(String, String, ErrorMessageProvider) - Constructor for class com.vaadin.flow.data.converter.StringToBooleanConverter
-
Creates converter with custom string representation.
- StringToDateConverter - Class in com.vaadin.flow.data.converter
-
A converter that converts from
Date
to
String
and back.
- StringToDateConverter() - Constructor for class com.vaadin.flow.data.converter.StringToDateConverter
-
- StringToDoubleConverter - Class in com.vaadin.flow.data.converter
-
- StringToDoubleConverter(String) - Constructor for class com.vaadin.flow.data.converter.StringToDoubleConverter
-
Creates a new converter instance with the given error message.
- StringToDoubleConverter(Double, String) - Constructor for class com.vaadin.flow.data.converter.StringToDoubleConverter
-
Creates a new converter instance with the given presentation value for
empty string and error message.
- StringToDoubleConverter(ErrorMessageProvider) - Constructor for class com.vaadin.flow.data.converter.StringToDoubleConverter
-
Creates a new converter instance with the given error message provider.
- StringToDoubleConverter(Double, ErrorMessageProvider) - Constructor for class com.vaadin.flow.data.converter.StringToDoubleConverter
-
Creates a new converter instance with the given presentation value for
empty string and error message provider.
- StringToFloatConverter - Class in com.vaadin.flow.data.converter
-
A converter that converts from
String
to
Float
and back.
- StringToFloatConverter(String) - Constructor for class com.vaadin.flow.data.converter.StringToFloatConverter
-
Creates a new converter instance with the given error message.
- StringToFloatConverter(Float, String) - Constructor for class com.vaadin.flow.data.converter.StringToFloatConverter
-
Creates a new converter instance with the given presentation value for
empty string and error message.
- StringToFloatConverter(ErrorMessageProvider) - Constructor for class com.vaadin.flow.data.converter.StringToFloatConverter
-
Creates a new converter instance with the given error message provider.
- StringToFloatConverter(Float, ErrorMessageProvider) - Constructor for class com.vaadin.flow.data.converter.StringToFloatConverter
-
Creates a new converter instance with the given presentation value for
empty string and error message provider.
- StringToIntegerConverter - Class in com.vaadin.flow.data.converter
-
- StringToIntegerConverter(String) - Constructor for class com.vaadin.flow.data.converter.StringToIntegerConverter
-
Creates a new converter instance with the given error message.
- StringToIntegerConverter(Integer, String) - Constructor for class com.vaadin.flow.data.converter.StringToIntegerConverter
-
Creates a new converter instance with the given presentation value for
empty string and error message.
- StringToIntegerConverter(ErrorMessageProvider) - Constructor for class com.vaadin.flow.data.converter.StringToIntegerConverter
-
Creates a new converter instance with the given error message provider.
- StringToIntegerConverter(Integer, ErrorMessageProvider) - Constructor for class com.vaadin.flow.data.converter.StringToIntegerConverter
-
Creates a new converter instance with the given presentation value for
empty string and error message provider.
- StringToLongConverter - Class in com.vaadin.flow.data.converter
-
A converter that converts from
String
to
Long
and back.
- StringToLongConverter(String) - Constructor for class com.vaadin.flow.data.converter.StringToLongConverter
-
Creates a new converter instance with the given error message.
- StringToLongConverter(Long, String) - Constructor for class com.vaadin.flow.data.converter.StringToLongConverter
-
Creates a new converter instance with the given presentation value for
empty string and error message.
- StringToLongConverter(ErrorMessageProvider) - Constructor for class com.vaadin.flow.data.converter.StringToLongConverter
-
Creates a new converter instance with the given error message provider.
- StringToLongConverter(Long, ErrorMessageProvider) - Constructor for class com.vaadin.flow.data.converter.StringToLongConverter
-
Creates a new converter instance with the given presentation value for
empty string and error message provider.
- StringToUuidConverter - Class in com.vaadin.flow.data.converter
-
A converter that converts from
String
to
UUID
and back.
- StringToUuidConverter(String) - Constructor for class com.vaadin.flow.data.converter.StringToUuidConverter
-
Constructs a converter for String to UUID and back.
- StringToUuidConverter(ErrorMessageProvider) - Constructor for class com.vaadin.flow.data.converter.StringToUuidConverter
-
Constructs a new converter instance with the given error message
provider.