Interface Predicate<E>
- All Known Implementing Classes:
BooleanPredicate, DoublePredicate, IntPredicate, LongPredicate
public interface Predicate<E>
A predicate that checks if some value leads to true or false.
-
Method Summary
-
Method Details
-
evaluate
Evaluates the predicate.- Parameters:
value- the value to evaluate.- Returns:
- true or false.
-