Uses of Interface
com.vaadin.flow.function.SerializableBiPredicate
-
Packages that use SerializableBiPredicate Package Description com.vaadin.flow.component.combobox com.vaadin.flow.component.internal com.vaadin.flow.data.binder com.vaadin.flow.data.provider -
-
Uses of SerializableBiPredicate in com.vaadin.flow.component.combobox
Subinterfaces of SerializableBiPredicate in com.vaadin.flow.component.combobox Modifier and Type Interface Description static interface
ComboBox.ItemFilter<T>
Predicate to checkComboBox
items against user typed strings. -
Uses of SerializableBiPredicate in com.vaadin.flow.component.internal
Constructors in com.vaadin.flow.component.internal with parameters of type SerializableBiPredicate Constructor Description AbstractFieldSupport(C component, T defaultValue, SerializableBiPredicate<T,T> valueEquals, SerializableConsumer<T> setPresentationValue)
Creates a new field support. -
Uses of SerializableBiPredicate in com.vaadin.flow.data.binder
Subinterfaces of SerializableBiPredicate in com.vaadin.flow.data.binder Modifier and Type Interface Description interface
RequiredFieldConfigurator
This interface represents a predicate which returnstrue
if bound field should be configured to have required indicator viaHasValue.setRequiredIndicatorVisible(boolean)
. -
Uses of SerializableBiPredicate in com.vaadin.flow.data.provider
Methods in com.vaadin.flow.data.provider with parameters of type SerializableBiPredicate Modifier and Type Method Description default <Q> DataProvider<T,Q>
InMemoryDataProvider. filteringBy(SerializableBiPredicate<T,Q> predicate)
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.default <V,Q>
DataProvider<T,Q>InMemoryDataProvider. filteringBy(ValueProvider<T,V> valueProvider, SerializableBiPredicate<V,Q> predicate)
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.static <T> DataProvider<T,String>
InMemoryDataProviderHelpers. filteringByCaseInsensitiveString(InMemoryDataProvider<T> dataProvider, ValueProvider<T,String> valueProvider, SerializableBiPredicate<String,String> predicate, SerializableSupplier<Locale> localeSupplier)
Wraps a given data provider so that its filter tests the given predicate with the lower case string provided by the given value provider.static <T,V,Q>
DataProvider<T,Q>InMemoryDataProviderHelpers. filteringByIgnoreNull(InMemoryDataProvider<T> dataProvider, ValueProvider<T,V> valueProvider, SerializableBiPredicate<V,Q> predicate)
Wraps a given data provider so that its filter ignores null items returned by the given value provider.
-