Interface SavotDataWriter

All Superinterfaces:
AutoCloseable, Closeable, Flushable
All Known Implementing Classes:
DataBinaryWriter

public interface SavotDataWriter extends Closeable, Flushable
Common interface of a writer of the data of a VOTable DATA node (whatever is its child node: FITS, BINARY or TABLEDATA).
Since:
09/2011
Author:
Gregory Mantelet
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    Writes the given row.
    void
    Writes the given rows.

    Methods inherited from interface java.io.Closeable

    close

    Methods inherited from interface java.io.Flushable

    flush
  • Method Details

    • writeTR

      void writeTR(SavotTR row) throws IOException
      Writes the given row.
      Parameters:
      row - Row to write.
      Throws:
      IOException - If there is an error while writing the given row.
    • writeTRSet

      void writeTRSet(TRSet rows) throws IOException
      Writes the given rows.
      Parameters:
      rows - Rows to write.
      Throws:
      IOException - If there is an error while writing the given rows.