Interface IThrowableFunction<T,R>
-
- Type Parameters:
T-R-
- 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 IThrowableFunction<T,R>
-
-
Method Summary
All Methods Static Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default <V> IThrowableFunction<T,V>andThen(IThrowableFunction<? super R,? extends V> var1)Rapply(T var1)default <V> IThrowableFunction<V,R>compose(IThrowableFunction<? super V,? extends T> var1)static <T> IThrowableFunction<T,T>identity()
-
-
-
Method Detail
-
compose
default <V> IThrowableFunction<V,R> compose(IThrowableFunction<? super V,? extends T> var1)
-
andThen
default <V> IThrowableFunction<T,V> andThen(IThrowableFunction<? super R,? extends V> var1)
-
identity
static <T> IThrowableFunction<T,T> identity()
-
-