Interface | Description |
---|---|
IPredicateWithException<T,X extends java.lang.Exception> |
This is a version of
Predicate , but can throw an exception. |
Class | Description |
---|---|
AndPredicate<T> |
Predicate that combines other predicates with boolean "and".
|
InvertingPredicate<T> |
Predicate that inverts another predicate.
|
OrPredicate<T> |
Predicate that combines other predicates with boolean "or".
|
PredicateUtils |
Utility methods for working with predicates.
|
StartsWithOneOfPredicate |
A predicate that selects strings that start with one of the given prefixes.
|