Interface IgniteThrowableBiPredicate<T,U>
-
- Type Parameters:
T- the type of the first argument to the predicateU- the type of the second argument the predicate
- All Superinterfaces:
Serializable
public interface IgniteThrowableBiPredicate<T,U> extends Serializable
Represents a predicate (boolean-valued function) of two arguments. UnlikeBiPredicateit is able to throwIgniteCheckedException.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description booleantest(T t, U u)Evaluates this predicate on the given arguments.
-
-
-
Method Detail
-
test
boolean test(T t, U u) throws IgniteCheckedException
Evaluates this predicate on the given arguments.- Parameters:
t- the first input argumentu- the second input argument- Returns:
trueif the input arguments match the predicate, otherwisefalse- Throws:
IgniteCheckedException
-
-