Interface ThrowableFunction<R,T,E extends Exception>
-
- Type Parameters:
T- The type of the input to the function.R- The type of the result of the function.E- The exception to be thrown from the body of the function.
- 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 ThrowableFunction<R,T,E extends Exception>
Specific interface for transmitting exceptions from lambda to external method without a catch.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Rapply(T t)Applies this function to the given argument.
-