- Type Parameters:
T1- the type of the first argument to the predicateT2- the type of the second argument to the predicateV- the type of the third argument to 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.
-
Method Summary
-
Method Details
-
test
Evaluates this predicate on the given arguments.- Parameters:
t1- the first input argumentt2- the second input argumentv- the third input argument- Returns:
trueif the input arguments match the predicate, otherwisefalse
-