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
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default Boolean
apply(T t, U u)
default Boolean
applyThrows(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.CheckedBiPredicate
test
-
-
-
-
Method Detail
-
testThrows
boolean testThrows(T t, U u) throws EolRuntimeException
- Specified by:
testThrows
in interfaceCheckedBiPredicate<T,U,EolRuntimeException>
- Throws:
EolRuntimeException
-
applyThrows
default Boolean applyThrows(T t, U u) throws EolRuntimeException
- 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
default Boolean apply(T t, U u)
- 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>
-
-