@FunctionalInterface
public interface ThrowingFunction<T1,T2>
Function
which can throw Exception
s.
Used to expand the allowed set of method references to be used by Java 8 functional interfaces.
Modifier and Type | Method and Description |
---|---|
T2 |
apply(T1 value) |