Package org.eclipse.epsilon.eol.function
Interface CheckedEolSupplier<R>
-
- All Superinterfaces:
CheckedSupplier<R,EolRuntimeException>
,Supplier<R>
- All Known Implementing Classes:
ConstraintAtom
,ConstraintContextAtom
,EvlAtom
,ExecutableRuleAtom
,GenerationRuleAtom
- 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 CheckedEolSupplier<R> extends CheckedSupplier<R,EolRuntimeException>
- Since:
- 1.6
- Author:
- Sina Madani
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default R
get()
R
getThrows()
-
-
-
Method Detail
-
getThrows
R getThrows() throws EolRuntimeException
- Specified by:
getThrows
in interfaceCheckedSupplier<R,EolRuntimeException>
- Throws:
EolRuntimeException
-
get
default R get()
- Specified by:
get
in interfaceCheckedSupplier<R,EolRuntimeException>
- Specified by:
get
in interfaceSupplier<R>
-
-