public class CellRef extends Object implements Comparable
Modifier and Type | Method and Description |
---|---|
int |
compareTo(Object inObj2) |
boolean |
equals(Object inObj2) |
String |
getCol()
Returns the column as a String.
|
Integer |
getColIndex()
Returns the column index as a 1-based number.
|
Integer |
getRowIndex()
Returns the row index as a 1-based number.
|
int |
hashCode() |
String |
nextCol()
Returns the next column as a String.
|
CellRef |
setColIndex(int inValue)
Specifies the column index as a 1-based number.
|
CellRef |
setRowIndex(int inValue)
Specifies the row index as a 1-based number.
|
String |
toString() |
public CellRef setColIndex(int inValue)
public Integer getColIndex()
public CellRef setRowIndex(int inValue)
public Integer getRowIndex()
public int compareTo(Object inObj2)
compareTo
in interface Comparable
jataylor@hairyfatguy.com