Interface Predicate<T>
-
- Type Parameters:
T
- type of values this predicate is defined on
@Deprecated public interface Predicate<T>
Deprecated.usePredicate
insteadType safe counter part of codeorg.apache.commons.collections.Predicate
.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description boolean
evaluate(T arg)
Deprecated.Use the specified parameter to perform a test that returns true or false.
-
-
-
Method Detail
-
evaluate
boolean evaluate(T arg)
Deprecated.Use the specified parameter to perform a test that returns true or false.- Parameters:
arg
- the predicate to evaluate, should not be changed- Returns:
- true or false
-
-