Interface DataConverter<S,D>
-
- Type Parameters:
S- the type of the source objectD- the type of the destination object
public interface DataConverter<S,D>This performs the conversion of source into a new instance of destination type. The operation of conversion may include :
- Creation of new objects :
newObject() - Conversion object to another type:
convert()
- Since:
- 1.0.0
- Author:
- Neha
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidconvert(S source, D destination)
-