Interface IncrementalSpreadSheetWriter

    • Method Detail

      • isIncremental

        boolean isIncremental()
        Returns whether the writer can write data incrementally.
        Returns:
        true if data can be written incrementally
      • write

        boolean write​(Row content,
                      File file)
        Writes the given content to the specified file.
        Parameters:
        content - the content to write
        file - the file to write to
        Returns:
        true if successfully written
      • write

        boolean write​(Row content,
                      String filename)
        Writes the spreadsheet to the given file.
        Parameters:
        content - the spreadsheet to write
        filename - the file to write the spreadsheet to
        Returns:
        true if successfully written
      • write

        boolean write​(Row content,
                      OutputStream stream)
        Writes the spreadsheet to the given output stream. The caller must ensure that the stream gets closed.
        Parameters:
        content - the spreadsheet to write
        stream - the output stream to write the spreadsheet to
        Returns:
        true if successfully written
      • write

        boolean write​(Row content,
                      Writer writer)
        Writes the spreadsheet to the given writer. The caller must ensure that the writer gets closed.
        Parameters:
        content - the spreadsheet to write
        writer - the writer to write the spreadsheet to
        Returns:
        true if successfully written