Package proguard.analysis.cpa.util
Interface TriPredicate<T,U,V>
-
- 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 TriPredicate<T,U,V>
A predicate taking three parameters.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default TriPredicate<T,U,V>
and(TriPredicate<? super T,? super U,? super V> other)
Returns a conjunction ofthis
andother
.default TriPredicate<T,U,V>
negate()
Returns a negation ofthis
default TriPredicate<T,U,V>
or(TriPredicate<? super T,? super U,? super V> other)
Returns a disjunction ofthis
andother
.boolean
test(T t, U u, V v)
Returns the result of the predicate on given arguments.
-
-
-
Method Detail
-
and
default TriPredicate<T,U,V> and(TriPredicate<? super T,? super U,? super V> other)
Returns a conjunction ofthis
andother
.
-
negate
default TriPredicate<T,U,V> negate()
Returns a negation ofthis
-
or
default TriPredicate<T,U,V> or(TriPredicate<? super T,? super U,? super V> other)
Returns a disjunction ofthis
andother
.
-
-