T
- the type of the first argument to the predicateU
- the type of the second argument the predicate@FunctionalInterface public interface BiPredicate<T,U>
Predicate
.
This is a functional interface
whose functional method is test(Object, Object)
.
Predicate
Modifier and Type | Method and Description |
---|---|
boolean |
test(T t,
U u)
Evaluates this predicate on the given arguments.
|