I - The type of the parameter of FunctionWhichThrows.call(Object)O - The return type of FunctionWhichThrows.call(Object)public interface Function<I,O> extends FunctionWhichThrows<I,O,NoException>
null) "input value" into a (non-null) "output value".
When using this type in a variable, parameter or field declaration, never write
Function<input-type, output-type>
, but always
Function<? super input-type, ? extends output-type>
.
callCopyright © 2018 Arno Unkrig. All rights reserved.