@FunctionalInterface
public interface TriPredicate<T,U,V>
Modifier and Type | Method and Description |
---|---|
default TriPredicate<T,U,V> |
and(TriPredicate<? super T,? super U,? super V> other)
Returns a conjunction of
this and other . |
default TriPredicate<T,U,V> |
negate()
Returns a negation of
this |
default TriPredicate<T,U,V> |
or(TriPredicate<? super T,? super U,? super V> other)
Returns a disjunction of
this and other . |
boolean |
test(T t,
U u,
V v)
Returns the result of the predicate on given arguments.
|
default TriPredicate<T,U,V> and(TriPredicate<? super T,? super U,? super V> other)
this
and other
.default TriPredicate<T,U,V> negate()
this
default TriPredicate<T,U,V> or(TriPredicate<? super T,? super U,? super V> other)
this
and other
.