Module jp.ecuacion.util.poi
Interface IfExcelTableWriter<T>
- Type Parameters:
T- SeeIfExcelTable.
- All Superinterfaces:
IfExcelTable<T>
- All Known Subinterfaces:
IfDataTypeCellExcelTableWriter
- All Known Implementing Classes:
CellFreeExcelTableWriter,CellOneLineHeaderExcelTableWriter,ExcelTableWriter
Provides the excel table writer methods.
Since the number of CellStyle in an excel file has limit (64,000),
first data line of CellStyle is reused to cells at the latter lines.
-
Method Summary
Modifier and TypeMethodDescriptionvoidwriteToCell(int columnNumberFromZero, T sourceCellData, org.apache.poi.ss.usermodel.Cell destCell) writes cell data to the cell.Methods inherited from interface jp.ecuacion.util.poi.excel.table.IfExcelTable
getFarLeftAndTopHeaderLabel, getHeaderLabelData, getNumberOfHeaderLines, getSheetName, getStringValue, ignoresAdditionalColumnsOfHeaderData, ignoresAdditionalColumnsOfHeaderData, isVerticalAndHorizontalOpposite, isVerticalAndHorizontalOpposite
-
Method Details
-
writeToCell
void writeToCell(int columnNumberFromZero, T sourceCellData, org.apache.poi.ss.usermodel.Cell destCell) writes cell data to the cell.- Parameters:
columnNumberFromZero- columnNumberFromZerosourceCellData- sourceCellDatadestCell- destCell
-