Interface BiPredicateWithException<T,U>
- Type Parameters:
T- the type of the first argumentU- the type of the second argument
- Functional Interface:
- This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
Deprecated.
BiPredicate interface that allows exceptions.
-
Method Summary
Modifier and TypeMethodDescriptionstatic <T,U> BiPredicate <T, U> asBiPredicate(BiPredicateWithException<T, U> unchecked) Deprecated.static <T,U> BiPredicate <T, U> asBiPredicateOrElse(BiPredicateWithException<T, U> unchecked, boolean orElse) Deprecated.static <T,U> BiPredicate <T, U> asBiPredicateOrElseGet(BiPredicateWithException<T, U> unchecked, BooleanSupplier orElseGet) Deprecated.default BiPredicate<T, U> orElse(boolean orElse) Deprecated.default BiPredicate<T, U> orElseGet(BooleanSupplier orElseGet) Deprecated.default BiPredicate<T, U> Deprecated.booleanDeprecated.
-
Method Details
-
test
-
orElseThrow
Deprecated. -
orElse
Deprecated. -
orElseGet
Deprecated. -
asBiPredicate
Deprecated. -
asBiPredicateOrElse
static <T,U> BiPredicate<T,U> asBiPredicateOrElse(BiPredicateWithException<T, U> unchecked, boolean orElse) Deprecated. -
asBiPredicateOrElseGet
static <T,U> BiPredicate<T,U> asBiPredicateOrElseGet(BiPredicateWithException<T, U> unchecked, BooleanSupplier orElseGet) Deprecated.
-