| Modifier and Type | Method | Description |
|---|---|---|
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> |
BiPredicateWithException.failing(Supplier<E> exceptionBuilder) |
Returns a predicate that always throw exception.
|
default BiPredicateWithException<T,U,E> |
BiPredicateWithException.negate() |
Returns a predicate that represents the logical negation of this predicate.
|
static <T,U,E extends Exception> |
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.
|
| Modifier and Type | Method | Description |
|---|---|---|
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> |
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> |
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.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> |
BiPredicateWithException.unchecked(BiPredicateWithException<T,U,E> predicate) |
Converts a
BiPredicateWithException to a BiPredicate that
wraps to RuntimeException. |
static <T,U,E extends Exception> |
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. |
Copyright © 2019. All rights reserved.