@FunctionalInterface
public interface FunctionWithException<T,R,E extends java.lang.Exception>
| Modifier and Type | Method and Description |
|---|---|
default <V> FunctionWithException<T,V,E> |
andThen(FunctionWithException<? super R,? extends V,E> after) |
R |
apply(T t) |
default <V> FunctionWithException<V,R,E> |
compose(FunctionWithException<? super V,? extends T,E> before) |
default <V> FunctionWithException<V,R,E> compose(FunctionWithException<? super V,? extends T,E> before) throws E extends java.lang.Exception
E extends java.lang.Exceptiondefault <V> FunctionWithException<T,V,E> andThen(FunctionWithException<? super R,? extends V,E> after) throws E extends java.lang.Exception
E extends java.lang.Exception