Interface CsvAfterDataWriter

Functional Interface:
This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.

@FunctionalInterface public interface CsvAfterDataWriter
A functional interface for writing custom content after data rows in CSV output.

Unlike Excel's AfterDataWriter, this receives a PrintWriter directly since CSV has no sheet/workbook concept.

Since:
2025-07-19
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    Writes custom content after all data rows.
  • Method Details

    • write

      void write(PrintWriter writer)
      Writes custom content after all data rows.
      Parameters:
      writer - the PrintWriter used to append additional CSV lines