Interface FlatFileHeaderCallback


public interface FlatFileHeaderCallback
Callback interface for writing a header to a file.
Author:
Robert Kasanicky, Mahmoud Ben Hassine
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    Write contents to a file using the supplied Writer.
  • Method Details

    • writeHeader

      void writeHeader(Writer writer) throws IOException
      Write contents to a file using the supplied Writer. It is not required to flush the writer inside this method.
      Parameters:
      writer - the Writer to be used to write the header.
      Throws:
      IOException - if error occurs during writing.