Package org.eclipse.epsilon.eol.function
Interface CheckedEolBiPredicate<T,U>
- Type Parameters:
T
-U
-
- All Superinterfaces:
BiFunction<T,
,U, Boolean> BiPredicate<T,
,U> CheckedBiFunction<T,
,U, Boolean, EolRuntimeException> CheckedBiPredicate<T,
,U, EolRuntimeException> CheckedEolBiFunction<T,
U, Boolean>
- 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 CheckedEolBiPredicate<T,U>
extends CheckedEolBiFunction<T,U,Boolean>, CheckedBiPredicate<T,U,EolRuntimeException>
- Since:
- 1.6
- Author:
- Sina Madani
-
Method Summary
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.CheckedBiPredicate
test
-
Method Details
-
testThrows
- Specified by:
testThrows
in interfaceCheckedBiPredicate<T,
U, EolRuntimeException> - Throws:
EolRuntimeException
-
applyThrows
- Specified by:
applyThrows
in interfaceCheckedBiFunction<T,
U, Boolean, EolRuntimeException> - Specified by:
applyThrows
in interfaceCheckedBiPredicate<T,
U, EolRuntimeException> - Specified by:
applyThrows
in interfaceCheckedEolBiFunction<T,
U, Boolean> - Throws:
EolRuntimeException
-
apply
- Specified by:
apply
in interfaceBiFunction<T,
U, Boolean> - Specified by:
apply
in interfaceCheckedBiFunction<T,
U, Boolean, EolRuntimeException> - Specified by:
apply
in interfaceCheckedEolBiFunction<T,
U, Boolean>
-