Package com.c8db
Interface Predicate<T>
-
- Type Parameters:
T- the type of the input to the predicate
public interface Predicate<T>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description booleantest(T t)Evaluates this predicate on the given argument.
-
-
-
Method Detail
-
test
boolean test(T t)
Evaluates this predicate on the given argument.- Parameters:
t- the input argument- Returns:
trueif the input argument matches the predicate, otherwisefalse
-
-