- 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 ThrowingFunction<T,R,E extends java.lang.Throwable>
A variant of the Function interface that allows to define a throwing type.
For declaring a generic method in the context of a strategy pattern.
Implementing this interface will not allow Java streams to throw checked exceptions, e.g. because streams evaluate
lazily at the terminal operator.