Package org.ethelred.util.function
Interface CheckedFunction<T,R,E extends Throwable>
-
- Type Parameters:
T- The input type for the operationR- The return type for the operationE- A checked exception type that is thrown by the operation
public interface CheckedFunction<T,R,E extends Throwable>Checked wrapper for a Function.
-
-
Method Summary
All Methods Static Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description Rapply(T t)default Function<T,R>asUnchecked()static <TT,RR,EE extends Throwable>
Function<TT,RR>unchecked(CheckedFunction<TT,RR,EE> checkedFunction)
-