Package org.eclipse.epsilon.eol.function
Interface CheckedEolBinaryOperator<T>
-
- Type Parameters:
T
-
- All Superinterfaces:
java.util.function.BiFunction<T,T,T>
,java.util.function.BinaryOperator<T>
,CheckedBiFunction<T,T,T,EolRuntimeException>
,CheckedBinaryOperator<T,EolRuntimeException>
,CheckedEolBiFunction<T,T,T>
- 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 CheckedEolBinaryOperator<T> extends CheckedEolBiFunction<T,T,T>, CheckedBinaryOperator<T,EolRuntimeException>
- Since:
- 1.6
- Author:
- Sina Madani
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default T
apply(T t, T u)
T
applyThrows(T t, T u)
-
-
-
Method Detail
-
applyThrows
T applyThrows(T t, T u) throws EolRuntimeException
- Specified by:
applyThrows
in interfaceCheckedBiFunction<T,T,T,EolRuntimeException>
- Specified by:
applyThrows
in interfaceCheckedEolBiFunction<T,T,T>
- Throws:
EolRuntimeException
-
apply
default T apply(T t, T u)
- Specified by:
apply
in interfacejava.util.function.BiFunction<T,T,T>
- Specified by:
apply
in interfaceCheckedBiFunction<T,T,T,EolRuntimeException>
- Specified by:
apply
in interfaceCheckedBinaryOperator<T,EolRuntimeException>
- Specified by:
apply
in interfaceCheckedEolBiFunction<T,T,T>
-
-