Package org.eclipse.epsilon.eol.function
Interface CheckedEolBiConsumer<T,U>
-
- Type Parameters:
T
-U
-
- All Superinterfaces:
BiConsumer<T,U>
,BiFunction<T,U,Void>
,CheckedBiConsumer<T,U,EolRuntimeException>
,CheckedBiFunction<T,U,Void,EolRuntimeException>
,CheckedEolBiFunction<T,U,Void>
- 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 CheckedEolBiConsumer<T,U> extends CheckedBiConsumer<T,U,EolRuntimeException>, CheckedEolBiFunction<T,U,Void>
- Since:
- 1.6
- Author:
- Sina Madani
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default void
accept(T t, U u)
void
acceptThrows(T t, U u)
default Void
applyThrows(T t, U u)
-
Methods inherited from interface java.util.function.BiConsumer
andThen
-
Methods inherited from interface java.util.function.BiFunction
andThen
-
Methods inherited from interface org.eclipse.epsilon.eol.function.CheckedEolBiFunction
apply
-
-
-
-
Method Detail
-
acceptThrows
void acceptThrows(T t, U u) throws EolRuntimeException
- Specified by:
acceptThrows
in interfaceCheckedBiConsumer<T,U,EolRuntimeException>
- Throws:
EolRuntimeException
-
applyThrows
default Void applyThrows(T t, U u) throws EolRuntimeException
- Specified by:
applyThrows
in interfaceCheckedBiFunction<T,U,Void,EolRuntimeException>
- Specified by:
applyThrows
in interfaceCheckedEolBiFunction<T,U,Void>
- Throws:
EolRuntimeException
-
accept
default void accept(T t, U u)
- Specified by:
accept
in interfaceBiConsumer<T,U>
- Specified by:
accept
in interfaceCheckedBiConsumer<T,U,EolRuntimeException>
-
-