T
- the type of the input to the functionR
- the type of the result of the functionE
- the type of exception which may be thrownpublic interface ThrowingFunction<T,R,E extends java.lang.Exception>
Function
but parameterized over an exception type which is allowed
to be thrown by apply(Object)
.Modifier and Type | Method and Description |
---|---|
R |
apply(T t)
Applies this function to the given argument.
|