Interface DataConverter<S,​D>

  • Type Parameters:
    S - the type of the source object
    D - 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 Detail

      • convert

        void convert​(S source,
                     D destination)