Package io.github.dornol.excelkit.csv
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.
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 TypeMethodDescriptionvoidwrite(PrintWriter writer) Writes custom content after all data rows.
-
Method Details
-
write
Writes custom content after all data rows.- Parameters:
writer- the PrintWriter used to append additional CSV lines
-