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