Package org.pentaho.di.core.spreadsheet
Interface KSheet
public interface KSheet
The interface that is needed by ExcelInput to handle a single numeric data sheet in a workbook.
- Author:
- matt
-
Method Summary
-
Method Details
-
getRow
Get one row of cells in the sheets- Parameters:
rownr
- The row number to get- Returns:
- the cells of the row
- Throws:
ArrayIndexOutOfBoundsException
- in case you try to read beyond the last row. (never returns null as such)
-
getName
String getName()- Returns:
- The name of the cell
-
getRows
int getRows()- Returns:
- The number of rows in the sheet
-
getCell
Get a cell in the sheet by specification of its coordinates.- Parameters:
colnr
- The column numberrownr
- The row number- Returns:
- The cell at the specified coordinates.
-