public interface LightCellsDataProvider
Method Summary | ||
---|---|---|
abstract boolean | isGatherString() | |
Checks whether the current string value of cell needs to be gathered into a global pool.
|
||
abstract int | nextCell() | |
Gets next cell to be saved.
|
||
abstract int | nextRow() | |
Gets the next row to be saved.
|
||
abstract void | startCell(Cell cell) | |
Starts to save data of one cell.
|
||
abstract void | startRow(Row row) | |
Starts to save data of one row.
|
||
abstract boolean | startSheet(int sheetIndex) | |
Starts to save a worksheet.
|
public abstract boolean startSheet(int sheetIndex)
sheetIndexlater in startRow(Row) or startCell(Cell) method, that is, if the process needs to know which worksheet is being processed, the implementation should retain the
sheetIndexvalue here.
sheetIndex
- index of current sheet to be saved.public abstract int nextRow()
public abstract void startRow(Row row)
row
-
Row object for implementation to fill data. Its row index is the returned value of latest call of public abstract int nextCell()
public abstract void startCell(Cell cell)
cell
-
Cell object for implementation to fill data. Its column index is the returned value of latest call of public abstract boolean isGatherString()