| Modifier and Type | Method | Description |
|---|---|---|
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> |
IntPredicateWithException.failing(Supplier<E> exceptionBuilder) |
Returns a predicate that always throw exception.
|
default IntPredicateWithException<E> |
IntPredicateWithException.negate() |
Returns a predicate that represents the logical negation of this predicate.
|
static <E extends Exception> |
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.
|
| Modifier and Type | Method | Description |
|---|---|---|
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> |
IntPredicateWithException.ignored(IntPredicateWithException<E> predicate) |
Converts a
IntPredicateWithException to a lifted IntPredicate
returning false in case of exception. |
static <E extends Exception> |
IntPredicateWithException.lifted(IntPredicateWithException<E> predicate) |
Converts a
IntPredicateWithException to a lifted IntPredicate
returning false in case of exception. |
static <E extends Exception> |
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> |
IntPredicateWithException.unchecked(IntPredicateWithException<E> predicate) |
Converts a
IntPredicateWithException to a IntPredicate that
wraps exception to RuntimeException. |
static <E extends Exception> |
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. |
Copyright © 2019. All rights reserved.