I - The type of the consumed subjectO - The type of the productEX - The throwable type that transform(Object) may throwpublic interface TransformerWhichThrows<I,O,EX extends java.lang.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. |