Package org.eclipse.epsilon.eol.function
Interface CheckedEolConsumer<T>
-
- All Superinterfaces:
CheckedConsumer<T,EolRuntimeException>
,Consumer<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 CheckedEolConsumer<T> extends CheckedConsumer<T,EolRuntimeException>
- 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)
void
acceptThrows(T t)
-
-
-
Method Detail
-
acceptThrows
void acceptThrows(T t) throws EolRuntimeException
- Specified by:
acceptThrows
in interfaceCheckedConsumer<T,EolRuntimeException>
- Throws:
EolRuntimeException
-
accept
default void accept(T t)
- Specified by:
accept
in interfaceCheckedConsumer<T,EolRuntimeException>
- Specified by:
accept
in interfaceConsumer<T>
-
-