Package org.openl.excel.parser.sax
Class SAXSheetDescriptor
- java.lang.Object
-
- org.openl.excel.parser.sax.SAXSheetDescriptor
-
- All Implemented Interfaces:
SheetDescriptor
public final class SAXSheetDescriptor extends Object implements SheetDescriptor
-
-
Method Summary
All Methods Instance Methods Concrete 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 nameStringgetRelationId()voidsetFirstColNum(int firstColNum)voidsetFirstRowNum(int firstRowNum)
-
-
-
Method Detail
-
getName
public String getName()
Description copied from interface:SheetDescriptorGet sheet name- Specified by:
getNamein interfaceSheetDescriptor- Returns:
- sheet name
-
getIndex
public int getIndex()
Description copied from interface:SheetDescriptorGet index of the sheet in workbook- Specified by:
getIndexin interfaceSheetDescriptor- Returns:
- sheet index
-
getRelationId
public String getRelationId()
-
getFirstRowNum
public int getFirstRowNum()
Description copied from interface:SheetDescriptorGet the first row on physical sheet. Is available after sheet cells are parsed.- Specified by:
getFirstRowNumin interfaceSheetDescriptor
-
setFirstRowNum
public void setFirstRowNum(int firstRowNum)
-
getFirstColNum
public int getFirstColNum()
Description copied from interface:SheetDescriptorGet the first column on physical sheet. Is available after sheet cells are parsed.- Specified by:
getFirstColNumin interfaceSheetDescriptor
-
setFirstColNum
public void setFirstColNum(int firstColNum)
-
-