Package org.openl.rules.lang.xls.load
Interface SheetLoader
-
- All Known Implementing Classes:
LazySheetLoader,SimpleSheetLoader
public interface SheetLoaderProvides access to the Sheet.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description CellLoadergetCellLoader(int column, int row)Get the cell accessor of current sheetorg.apache.poi.ss.usermodel.SheetgetSheet()Get the sheet.StringgetSheetName()Get the sheet name
-
-
-
Method Detail
-
getSheet
org.apache.poi.ss.usermodel.Sheet getSheet()
Get the sheet. Depending on implementation, when this method is repeatedly called, it can (but mustn't) return the different instances of Sheet java object.- Returns:
- loaded sheet
-
getSheetName
String getSheetName()
Get the sheet name- Returns:
- sheet name
-
getCellLoader
CellLoader getCellLoader(int column, int row)
Get the cell accessor of current sheet- Parameters:
column- the column of current sheetrow- the row of current sheet- Returns:
- the cell accessor of current sheet
-
-