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
Modifier and TypeMethodDescriptiondefault BooleanapplyThrows(T t, U u) default booleanbooleantestThrows(T t, U u) Methods inherited from interface java.util.function.BiFunction
andThenMethods inherited from interface java.util.function.BiPredicate
and, negate, orMethods inherited from interface org.eclipse.epsilon.common.function.CheckedBiFunction
apply
-
Method Details
-
testThrows
-
applyThrows
- Specified by:
applyThrowsin interfaceCheckedBiFunction<T,U, Boolean, E extends Exception> - Throws:
E extends Exception
-
test
- Specified by:
testin interfaceBiPredicate<T,U>
-