Interface RecordWriter<T>

    • Method Detail

      • parseHeader

        void parseHeader​(String... aHeader)
        Parses and sets the Header from the provided String. You must have provided a ColumnFactory for this operation to succeed.
        Parameters:
        aHeader - The header to be created.
      • writeHeader

        void writeHeader​(String... aHeader)
        Parses and sets the Header from the provided String arguments and writes the CSV header to the (standard) output (be it a Stream or a File). You must have provided a ColumnFactory for this operation to succeed.
        Parameters:
        aHeader - The header to be created.
      • writeHeader

        void writeHeader​(Header<T> aHeader)
        Sets and writes the provided Header to the (standard) output (be it a Stream or a File). .
        Parameters:
        aHeader - The header to be created.
      • writeHeader

        void writeHeader​()
        Writes the CSV header to the (standard) output (be it a Stream or a File). You must have provided a Header for this operation to succeed.