Interface RowWriter<T>

All Superinterfaces:
AutoCloseable

public interface RowWriter<T> extends AutoCloseable
A RowWriter writes a set of elements (a row) to an external destination.
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    writeNext(T aData)
    Writes the next element.

    Methods inherited from interface java.lang.AutoCloseable

    close
  • Method Details

    • writeNext

      void writeNext(T aData) throws IOException
      Writes the next element.
      Parameters:
      aData - The data to be written
      Throws:
      IOException - thrown in case there was an I/O related problem.