Package aQute.lib.exceptions
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 @FunctionalInterface public interface BiPredicateWithException<T,U>
Deprecated.BiPredicate interface that allows exceptions.
-
-
Method Summary
All Methods Static Methods Instance Methods Abstract Methods Default Methods Deprecated Methods Modifier and Type Method Description static <T,U>
java.util.function.BiPredicate<T,U>asBiPredicate(BiPredicateWithException<T,U> unchecked)
Deprecated.static <T,U>
java.util.function.BiPredicate<T,U>asBiPredicateOrElse(BiPredicateWithException<T,U> unchecked, boolean orElse)
Deprecated.static <T,U>
java.util.function.BiPredicate<T,U>asBiPredicateOrElseGet(BiPredicateWithException<T,U> unchecked, java.util.function.BooleanSupplier orElseGet)
Deprecated.default java.util.function.BiPredicate<T,U>
orElse(boolean orElse)
Deprecated.default java.util.function.BiPredicate<T,U>
orElseGet(java.util.function.BooleanSupplier orElseGet)
Deprecated.default java.util.function.BiPredicate<T,U>
orElseThrow()
Deprecated.boolean
test(T t, U u)
Deprecated.
-
-
-
Method Detail
-
orElseGet
default java.util.function.BiPredicate<T,U> orElseGet(java.util.function.BooleanSupplier orElseGet)
Deprecated.
-
asBiPredicate
static <T,U> java.util.function.BiPredicate<T,U> asBiPredicate(BiPredicateWithException<T,U> unchecked)
Deprecated.
-
asBiPredicateOrElse
static <T,U> java.util.function.BiPredicate<T,U> asBiPredicateOrElse(BiPredicateWithException<T,U> unchecked, boolean orElse)
Deprecated.
-
asBiPredicateOrElseGet
static <T,U> java.util.function.BiPredicate<T,U> asBiPredicateOrElseGet(BiPredicateWithException<T,U> unchecked, java.util.function.BooleanSupplier orElseGet)
Deprecated.
-
-