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