Interface ExcelReportGenerator
- All Known Implementing Classes:
PoiExcelReportGenerator
public interface ExcelReportGenerator
Writes data to excel report.
-
Method Summary
Modifier and TypeMethodDescriptionvoid
flush()
Flushes data to report (the OutputStream is not closed that's the user responsibility).void
writeRowData
(Object... reportDataList) Write a single row to excel report.
-
Method Details
-
writeRowData
Write a single row to excel report.- Parameters:
reportDataList
- data to write as a row in excel report.
-
flush
void flush()Flushes data to report (the OutputStream is not closed that's the user responsibility). No further writing is possible after this call.
-