Interface CheckedBiPredicate<T,U,E extends Exception>
-
- Type Parameters:
T
-U
-E
-
- All Superinterfaces:
BiFunction<T,U,Boolean>
,BiPredicate<T,U>
,CheckedBiFunction<T,U,Boolean,E>
- All Known Subinterfaces:
CheckedEolBiPredicate<T,U>
- Functional Interface:
- This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
@FunctionalInterface public interface CheckedBiPredicate<T,U,E extends Exception> extends BiPredicate<T,U>, CheckedBiFunction<T,U,Boolean,E>
- Since:
- 1.6
- Author:
- Sina Madani
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default Boolean
applyThrows(T t, U u)
default boolean
test(T t, U u)
boolean
testThrows(T t, U u)
-
Methods inherited from interface java.util.function.BiFunction
andThen
-
Methods inherited from interface java.util.function.BiPredicate
and, negate, or
-
Methods inherited from interface org.eclipse.epsilon.common.function.CheckedBiFunction
apply
-
-