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