I - The type of the consumed subjectO - The type of the productEX - The throwable type that transform(Object) may throw; use NoException to indicate that
transform(Object) does not declare any checked exceptionspublic interface TransformerWhichThrows<I,O,EX extends Throwable>
Transformer, but the transform(Object) method is permitted to throw a given exception.
TransformerWhichThrows<
input-type,
output-type,
thrown-exception
>
, but always
TransformerWhichThrows<
? super input-type,
? extends output-type,
? extends thrown-exception
>
.transform(Object)| Modifier and Type | Method and Description |
|---|---|
O |
transform(I in)
Transforms a (non-null) object of type
I into a (non-null) object of type O. |
Copyright © 2018 Arno Unkrig. All rights reserved.