I - The type of the input parameter of TransformerWhichThrows.transform(Object)O - The return type of TransformerWhichThrows.transform(Object)public interface Transformer<I,O> extends TransformerWhichThrows<I,O,NoException>
When using this type in a variable, parameter or field declaration, never write
Transformer<input-type, output-type>
, but always:
Transformer<? super input-type, ? extends output-type>
TransformerWhichThrows.transform(Object)transformCopyright © 2018 Arno Unkrig. All rights reserved.