|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
T
- the type of the first argument to the predicateU
- the type of the second argument the predicatepublic interface BiPredicate<T,U>
Represents a predicate (boolean-valued function) of two arguments. This is
the two-arity specialization of Predicate
.
Predicate
Method Summary | |
---|---|
boolean |
test(T t,
U u)
Evaluates this predicate on the given arguments. |
Method Detail |
---|
boolean test(T t, U u)
t
- the first input argumentu
- the second input argument
true
if the input arguments match the predicate,
otherwise false
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |