A Predicate is the object equivalent of an if statement.
It uses the input object to return a true or false value, and is often used in
validation or filtering.
Standard implementations of common predicates are provided by PredicateUtils . These include true, false, instanceof, equals, and, or, not, method invokation and null testing.
| Method Summary | |
|---|---|
| boolean |
Use the specified parameter to perform a test that returns true or false. |