Interface Transformer<A,R>
-
- Type Parameters:
A
- argument type to transform fromR
- result type to transform to
public interface Transformer<A,R>
Type safe counter part ofTransformer
.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description R
transform(A argument)
Transforms the input object (leaving it unchanged) into some output object.
-