Package org.opt4j.core.config
Interface Transformer<I,O>
-
- Type Parameters:
I
- the type of the source objectO
- the type of the target object
public interface Transformer<I,O>
TheTransformer
design pattern.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description O
transform(I in)
The given inputin
is not changed by transforming it to a new object of type.
-