Package com.vaadin.flow.function
Interface SerializablePredicate<T>
-
- Type Parameters:
T- the type of the input to the predicate
- All Superinterfaces:
Predicate<T>,Serializable
public interface SerializablePredicate<T> extends Predicate<T>, Serializable
APredicatethat is alsoSerializable.- Since:
- 1.0
- Author:
- Vaadin Ltd
-
-
Method Summary
All Methods Instance Methods Default Methods Modifier and Type Method Description default SerializablePredicate<T>and(Predicate<? super T> other)default SerializablePredicate<T>negate()default SerializablePredicate<T>or(Predicate<? super T> other)
-
-
-
Method Detail
-
and
default SerializablePredicate<T> and(Predicate<? super T> other)
-
negate
default SerializablePredicate<T> negate()
-
-