public interface LightCellsDataHandler
Method Summary | ||
---|---|---|
abstract boolean | processCell(Cell cell) | |
Starts to process one cell.
|
||
abstract boolean | processRow(Row row) | |
Starts to process one row.
|
||
abstract boolean | startCell(int columnIndex) | |
Prepares to process a cell.
|
||
abstract boolean | startRow(int rowIndex) | |
Prepares to process a row.
|
||
abstract boolean | startSheet(Worksheet sheet) | |
Starts to process a worksheet.
|
public abstract boolean startSheet(Worksheet sheet)
sheet
- the worksheet to read cells data.public abstract boolean startRow(int rowIndex)
rowIndex
- the index of next row to be processedpublic abstract boolean processRow(Row row)
row
-
Row object which is being processed currently.
public abstract boolean startCell(int columnIndex)
columnIndex
- column index of the cell to be processedpublic abstract boolean processCell(Cell cell)
cell
-
Cell object which is being processed currently