Package org.apache.poi.ss.util
Class CellAddress
- java.lang.Object
-
- org.apache.poi.ss.util.CellAddress
-
- All Implemented Interfaces:
Comparable<CellAddress>
public class CellAddress extends Object implements Comparable<CellAddress>
This class is a container for POI usermodel row=0 column=0 cell references. It is barely a container for these two coordinates. The implementation of the Comparable interface sorts by "natural" order top left to bottom right.
Use
CellAddress
when you want to refer to the location of a cell in a sheet when the concept of relative/absolute does not apply (such as the anchor location of a cell comment). UseCellReference
when the concept of relative/absolute does apply (such as a cell reference in a formula).CellAddress
es do not have a concept of "sheet", whileCellReference
s do.
-
-
Field Summary
Fields Modifier and Type Field Description static CellAddress
A1
A constant for references to the first cell in a sheet.
-
Constructor Summary
Constructors Constructor Description CellAddress(int row, int column)
Create a new CellAddress object.CellAddress(String address)
Create a new CellAddress object.CellAddress(Cell cell)
Create a new CellAddress object.CellAddress(CellAddress address)
Create a new CellAddress objectCellAddress(CellReference reference)
Create a new CellAddress object.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description int
compareTo(CellAddress other)
Compare this CellAddress using the "natural" row-major, column-minor ordering.boolean
equals(Object o)
String
formatAsR1C1String()
String
formatAsString()
Same astoString()
int
getColumn()
Get the cell address columnint
getRow()
Get the cell address rowint
hashCode()
String
toString()
-
-
-
Field Detail
-
A1
public static final CellAddress A1
A constant for references to the first cell in a sheet.
-
-
Constructor Detail
-
CellAddress
public CellAddress(int row, int column)
Create a new CellAddress object.- Parameters:
row
- Row index (first row is 0)column
- Column index (first column is 0)
-
CellAddress
public CellAddress(String address)
Create a new CellAddress object.- Parameters:
address
- a cell address in A1 format. Address may not contain sheet name or dollar signs. (that is, address is not a cell reference. UseCellAddress(CellReference)
instead if starting with a cell reference.)
-
CellAddress
public CellAddress(CellReference reference)
Create a new CellAddress object.- Parameters:
reference
- a reference to a cell
-
CellAddress
public CellAddress(CellAddress address)
Create a new CellAddress object- Parameters:
address
- a CellAddress
-
CellAddress
public CellAddress(Cell cell)
Create a new CellAddress object.- Parameters:
cell
- the Cell to get the location of
-
-
Method Detail
-
getRow
public int getRow()
Get the cell address row- Returns:
- row
-
getColumn
public int getColumn()
Get the cell address column- Returns:
- column
-
compareTo
public int compareTo(CellAddress other)
Compare this CellAddress using the "natural" row-major, column-minor ordering. That is, top-left to bottom-right ordering.- Specified by:
compareTo
in interfaceComparable<CellAddress>
- Returns:
- -1 if this CellAddress is before (above/left) of other
- 0 if addresses are the same
- 1 if this CellAddress is after (below/right) of other
-
formatAsString
public String formatAsString()
Same astoString()
- Returns:
- A1-style cell address string representation
-
formatAsR1C1String
public String formatAsR1C1String()
- Returns:
- R1C1-style cell address string representation
- Since:
- POI 5.2.1
- See Also:
formatAsString()
-
-