Package loci.poi.hssf.util
Class CellReference
- java.lang.Object
-
- loci.poi.hssf.util.CellReference
-
public class CellReference extends Object
- Author:
- Avik Sengupta, Dennis Doubleday (patch to seperateRowColumns())
-
-
Constructor Summary
Constructors Constructor Description CellReference(int pRow, int pCol)
CellReference(int pRow, int pCol, boolean pAbsRow, boolean pAbsCol)
CellReference(String cellRef)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description short
getCol()
int
getRow()
String
getSheetName()
boolean
isColAbsolute()
boolean
isRowAbsolute()
String
toString()
-
-
-
Constructor Detail
-
CellReference
public CellReference(String cellRef)
-
CellReference
public CellReference(int pRow, int pCol)
-
CellReference
public CellReference(int pRow, int pCol, boolean pAbsRow, boolean pAbsCol)
-
-