Interface ImportDataDumpStrategy

All Known Implementing Classes:
DefaultImportDataDumpStrategy

public interface ImportDataDumpStrategy
This interface provides methods for dumping ImpEx related objects like ValueLine, HeaderDescriptor and AbstractCodeLine.
  • Method Summary

    Modifier and Type
    Method
    Description
    Dumps single AbstractCodeLine object into String representation of an ImpEx import.
    dump(HeaderDescriptor headerDescriptor)
    Dumps single HeaderDescriptor object into String representation of an ImpEx import.
    dump(ValueLine valueLine)
    Dumps single ValueLine object into String representation of an ImpEx import.
    dump(List<ValueLine> valueLines)
    Dumps collection of ValueLine objects into String representation of an ImpEx import.
  • Method Details

    • dump

      String dump(List<ValueLine> valueLines)
      Dumps collection of ValueLine objects into String representation of an ImpEx import.
      Parameters:
      valueLines - the collection of ValueLine objects to dump.
    • dump

      String dump(ValueLine valueLine)
      Dumps single ValueLine object into String representation of an ImpEx import.
      Parameters:
      valueLine - ValueLine object to dump.
    • dump

      String dump(HeaderDescriptor headerDescriptor)
      Dumps single HeaderDescriptor object into String representation of an ImpEx import.
      Parameters:
      headerDescriptor - HeaderDescriptor object to dump.
    • dump

      String dump(AbstractCodeLine codeLine)
      Dumps single AbstractCodeLine object into String representation of an ImpEx import.
      Parameters:
      codeLine - AbstractCodeLine object to dump.