T1 - the first element TypeT2 - the second element TypeT3 - the third element Type@FunctionalInterface public interface TriPredicate<T1,T2,T3>
| Modifier and Type | Method and Description |
|---|---|
default TriPredicate<T1,T2,T3> |
and(TriPredicate<T1,T2,T3> other)
Returns a composed predicate that represents a short-circuiting logical
AND of this predicate and another.
|
default TriPredicate<T1,T2,T3> |
negate()
Returns a predicate that represents the logical negation of this
predicate.
|
default TriPredicate<T1,T2,T3> |
or(TriPredicate<T1,T2,T3> other)
Returns a composed predicate that represents a short-circuiting logical
OR of this predicate and another.
|
boolean |
test(T1 first,
T2 second,
T3 third) |
default TriPredicate<T1,T2,T3> and(TriPredicate<T1,T2,T3> other)
false, then the other
predicate is not evaluated.other - a predicate that will be logically-ANDed with this predicateIllegalArgumentException - if other is nulldefault TriPredicate<T1,T2,T3> negate()
default TriPredicate<T1,T2,T3> or(TriPredicate<T1,T2,T3> other)
true, then the other predicate is
not evaluated.other - a predicate that will be logically-ORed with this predicateIllegalArgumentException - if other is nullCopyright © 2017. All rights reserved.