Package org.openl.excel.parser
Interface SheetDescriptor
-
- All Known Implementing Classes:
DOMSheetDescriptor,EventSheetDescriptor,SAXSheetDescriptor
public interface SheetDescriptor
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description intgetFirstColNum()Get the first column on physical sheet.intgetFirstRowNum()Get the first row on physical sheet.intgetIndex()Get index of the sheet in workbookStringgetName()Get sheet name
-
-
-
Method Detail
-
getName
String getName()
Get sheet name- Returns:
- sheet name
-
getIndex
int getIndex()
Get index of the sheet in workbook- Returns:
- sheet index
-
getFirstRowNum
int getFirstRowNum()
Get the first row on physical sheet. Is available after sheet cells are parsed.
-
getFirstColNum
int getFirstColNum()
Get the first column on physical sheet. Is available after sheet cells are parsed.
-
-