T - the type of the input to the functionR - the type of the result of the functionE - the type of the Exception that can be thrown@FunctionalInterface
public interface ThrowingFunction<T,R,E extends java.lang.Exception>
This is a functional interface whose functional method is
apply(Object).
| Modifier and Type | Method and Description |
|---|---|
R |
apply(T t)
Applies this function to the given argument.
|