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