Uses of Interface
com.vaadin.server.SerializableBiPredicate
-
Packages that use SerializableBiPredicate Package Description com.vaadin.data com.vaadin.data.provider com.vaadin.ui -
-
Uses of SerializableBiPredicate in com.vaadin.data
Methods in com.vaadin.data that return SerializableBiPredicate Modifier and Type Method Description SerializableBiPredicate<TARGET,TARGET>Binder.Binding. getEqualityPredicate()Used in comparison of the current value of a field with its initial value.SerializableBiPredicate<TARGET,TARGET>Binder.BindingImpl. getEqualityPredicate()Methods in com.vaadin.data with parameters of type SerializableBiPredicate Modifier and Type Method Description default Binder.BindingBuilder<BEAN,TARGET>Binder.BindingBuilder. withEqualityPredicate(SerializableBiPredicate<TARGET,TARGET> equalityPredicate)Sets theequalityPredicateused to compare the current value of a field with its initial value.Binder.BindingBuilder<BEAN,TARGET>Binder.BindingBuilderImpl. withEqualityPredicate(SerializableBiPredicate<TARGET,TARGET> equalityPredicate) -
Uses of SerializableBiPredicate in com.vaadin.data.provider
Methods in com.vaadin.data.provider with parameters of type SerializableBiPredicate Modifier and Type Method Description 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.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.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. -
Uses of SerializableBiPredicate in com.vaadin.ui
Subinterfaces of SerializableBiPredicate in com.vaadin.ui Modifier and Type Interface Description static interfaceComboBox.CaptionFilterPredicate to checkComboBoxitem captions against user typed strings.
-