Package de.xima.fc.interfaces
Interface ISerializableBiPredicate<T,U>
-
- Type Parameters:
T
- the type of the first argument to the predicateU
- the type of the second argument the predicate
- All Superinterfaces:
BiPredicate<T,U>
,Serializable
- 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 interface ISerializableBiPredicate<T,U> extends BiPredicate<T,U>, Serializable
ABiPredicate
that is also serializable.Represents a predicate (boolean-valued function) of two arguments. This is the two-arity specialization of
Predicate
.This is a
functional interface
whose functional method isBiPredicate.test(Object, Object)
.- Author:
- XIMA MEDIA GmbH
-
-
Method Summary
-
Methods inherited from interface java.util.function.BiPredicate
and, negate, or, test
-
-