com.vaadin.flow.component.combobox.

Interface ComboBox.ItemFilter<T>

All Superinterfaces:

BiPredicate<T,String>, Serializable, SerializableBiPredicate<T,String>

Enclosing class:

ComboBox<T>

Functional Interface:

This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.

@FunctionalInterface public static interface ComboBox.ItemFilter<T> extends SerializableBiPredicate<T,String>

Predicate to check ComboBox items against user typed strings.

  • Method Summary

    Modifier and Type
    Method
    Description
    boolean
    test(T item, String filterText)
     

    Methods inherited from interface java.util.function.BiPredicate

    and, negate, or