default ThrowingDoublePredicate<X> |
ThrowingDoublePredicate.and(ThrowingDoublePredicate<? extends X> other) |
Returns a composed predicate that represents a short-circuiting logical AND of this predicate and another.
|
static <X extends Throwable> ThrowingDoublePredicate<X> |
ThrowingDoublePredicate.checked(DoublePredicate predicate) |
Returns a predicate that evaluates the predicate predicate on its input.
|
static <X extends Throwable> ThrowingDoublePredicate<X> |
ThrowingDoublePredicate.checked(DoublePredicate predicate,
Class<X> errorType) |
Returns a predicate that evaluates the predicate predicate on its input.
|
default ThrowingDoublePredicate<X> |
ThrowingDoublePredicate.negate() |
Returns a predicate that represents the logical negation of this predicate.
|
static <X extends Throwable> ThrowingDoublePredicate<X> |
ThrowingDoublePredicate.not(ThrowingDoublePredicate<? extends X> predicate) |
Returns a predicate that is the negation of the supplied predicate.
|
static <X extends Throwable> ThrowingDoublePredicate<X> |
ThrowingDoublePredicate.of(ThrowingDoublePredicate<X> predicate) |
Factory method for turning ThrowingDoublePredicate-shaped lambdas into ThrowingDoublePredicates.
|
default <E extends Throwable> ThrowingDoublePredicate<E> |
ThrowingDoublePredicate.onErrorGetCheckedAsBoolean(ThrowingBooleanSupplier<? extends E> fallback) |
Returns a predicate that evaluates this predicate on its input.
|
default <E extends Throwable> ThrowingDoublePredicate<E> |
ThrowingDoublePredicate.onErrorHandleChecked(ThrowingPredicate<? super X,? extends E> errorHandler) |
Returns a predicate that evaluates this predicate on its input.
|
default <E extends Throwable> ThrowingDoublePredicate<E> |
ThrowingDoublePredicate.onErrorTestChecked(ThrowingDoublePredicate<? extends E> fallback) |
Returns a predicate that evaluates this predicate on its input.
|
default <E extends Throwable> ThrowingDoublePredicate<E> |
ThrowingDoublePredicate.onErrorThrowAsChecked(Function<? super X,? extends E> errorMapper) |
Returns a predicate that evaluates this predicate on its input.
|
default ThrowingDoublePredicate<X> |
ThrowingDoublePredicate.or(ThrowingDoublePredicate<? extends X> other) |
Returns a composed predicate that represents a short-circuiting logical OR of this predicate and another.
|