I - The type of the parameter of call(Object)O - The return type of call(Object)EX - The exception type that call(Object) is allowed to throwpublic interface FunctionWhichThrows<I,O,EX extends java.lang.Throwable>
When using this type in a variable, parameter or field declaration, never write
FunctionEhichThrows<
input-type,
output-type,
thrown-exception
>
, but always
FunctionEhichThrows<
? super input-type,
? extends output-type,
? extends thrown-exception
>
.
call(Object)| Modifier and Type | Method and Description |
|---|---|
O |
call(I argument)
Calculates a value of type O from an argument of type I.
|