Package at.jku.ssw.fp.sect02_3
Interface FunctionWithExcpt<T,R,X extends Exception>
-
- Type Parameters:
T
- the type of the argumentR
- the type of the resultX
- the type of the exception thrown
public interface FunctionWithExcpt<T,R,X extends Exception>
Functional interface with exception- Author:
- hp
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description R
apply(T t)
Applies the value, returns a result and possibly throws an exception.
-