default PredicateWithException<T,E> |
PredicateWithException.and(PredicateWithException<? super T,? extends E> other) |
Returns a composed predicate that represents a short-circuiting logical AND
of this predicate and another.
|
static <T> org.apache.commons.collections4.Predicate<T> |
CommonsCollections4Helper.asPredicate(PredicateWithException<T,?> predicate) |
|
static <T,E extends Exception> Predicate<T> |
PredicateWithException.ignored(PredicateWithException<T,E> predicate) |
Converts a PredicateWithException to a lifted Predicate
returning false in case of exception.
|
static <T,E extends Exception> Predicate<T> |
PredicateWithException.ignored(PredicateWithException<T,E> predicate,
boolean defaultValue) |
Converts a PredicateWithException to a lifted Predicate
returning a default value in case of exception.
|
static <T,E extends Exception> Predicate<T> |
PredicateWithException.lifted(PredicateWithException<T,E> predicate) |
Converts a PredicateWithException to a lifted Predicate
returning false in case of exception.
|
static <T,E extends Exception> PredicateWithException<T,E> |
PredicateWithException.negate(PredicateWithException<T,E> predicate) |
Negate a PredicateWithException .
|
default PredicateWithException<T,E> |
PredicateWithException.or(PredicateWithException<? super T,? extends E> other) |
Returns a composed predicate that represents a short-circuiting logical OR of
this predicate and another.
|
static <T,E extends Exception> Predicate<T> |
PredicateWithException.unchecked(PredicateWithException<T,E> predicate) |
Converts a PredicateWithException to a Predicate that wraps
exception to RuntimeException .
|
static <T,E extends Exception> Predicate<T> |
PredicateWithException.unchecked(PredicateWithException<T,E> predicate,
Function<Exception,RuntimeException> exceptionMapper) |
Converts a PredicateWithException to a Predicate that wraps
exception to RuntimeException by using the provided mapping function.
|