Package org.infinispan.util.function
Interface TriPredicate<T,U,V>
- Type Parameters:
T
- the type of the first argument to the predicateU
- the type of the second argument the predicateV
- the type of the third argument the predicate
- Functional Interface:
- This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
Represents a predicate (boolean-valued function) of three arguments. This is
the three-arity specialization of
Predicate
.
This is a functional interface
whose functional method is test(Object, Object, Object)
.
- Since:
- 15.0
- See Also:
-
Method Summary
-
Method Details
-
test
Evaluates this predicate on the given arguments.- Parameters:
t
- the first input argumentu
- the second input argumentv
- the third input argument- Returns:
true
if the input arguments match the predicate, otherwisefalse
-