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