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 throw; use NoException to indicate that call(Object) does not declare any checked
exceptionspublic interface FunctionWhichThrows<I,O,EX extends Throwable>
null) into an "output value" (which may also be
null).
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
>
.
| Modifier and Type | Method and Description |
|---|---|
O |
call(I argument)
Calculates a value of type O from an argument of type I.
|
Copyright © 2018 Arno Unkrig. All rights reserved.