Uses of Class
org.apache.poi.ss.util.CellAddress
-
Packages that use CellAddress Package Description org.apache.poi.hssf.usermodel The usermodel package maps HSSF low level structures to familiar workbook/sheet modelorg.apache.poi.ss.usermodel org.apache.poi.ss.util -
-
Uses of CellAddress in org.apache.poi.hssf.usermodel
Methods in org.apache.poi.hssf.usermodel that return CellAddress Modifier and Type Method Description CellAddress
HSSFSheet. getActiveCell()
Return location of the active cell, e.g.CellAddress
HSSFComment. getAddress()
Methods in org.apache.poi.hssf.usermodel that return types with arguments of type CellAddress Modifier and Type Method Description Map<CellAddress,HSSFComment>
HSSFSheet. getCellComments()
Returns all cell comments on this sheet.Methods in org.apache.poi.hssf.usermodel with parameters of type CellAddress Modifier and Type Method Description HSSFComment
HSSFSheet. getCellComment(CellAddress ref)
Returns cell comment for the specified row and columnHSSFHyperlink
HSSFSheet. getHyperlink(CellAddress addr)
Get a Hyperlink in this sheet located in a cell specified by {code addr}void
HSSFSheet. setActiveCell(CellAddress address)
Sets location of the active cellvoid
HSSFComment. setAddress(CellAddress address)
-
Uses of CellAddress in org.apache.poi.ss.usermodel
Methods in org.apache.poi.ss.usermodel that return CellAddress Modifier and Type Method Description CellAddress
Sheet. getActiveCell()
Return location of the active cell, e.g.CellAddress
Cell. getAddress()
Gets the address of this cellCellAddress
CellBase. getAddress()
Gets the address of this cellCellAddress
Comment. getAddress()
Get the address of the cell that this comment is attached toMethods in org.apache.poi.ss.usermodel that return types with arguments of type CellAddress Modifier and Type Method Description Map<CellAddress,? extends Comment>
Sheet. getCellComments()
Returns all cell comments on this sheet.Methods in org.apache.poi.ss.usermodel with parameters of type CellAddress Modifier and Type Method Description Comment
Sheet. getCellComment(CellAddress ref)
Returns cell comment for the specified locationHyperlink
Sheet. getHyperlink(CellAddress addr)
Get a Hyperlink in this sheet located in a cell specified by {code addr}void
Sheet. setActiveCell(CellAddress address)
Sets location of the active cellvoid
Comment. setAddress(CellAddress addr)
Set the address of the cell that this comment is attached to -
Uses of CellAddress in org.apache.poi.ss.util
Fields in org.apache.poi.ss.util declared as CellAddress Modifier and Type Field Description static CellAddress
CellAddress. A1
A constant for references to the first cell in a sheet.Methods in org.apache.poi.ss.util that return types with arguments of type CellAddress Modifier and Type Method Description Iterator<CellAddress>
CellRangeAddressBase. iterator()
Returns an iterator over the CellAddresses in this cell range in row-major order.Spliterator<CellAddress>
CellRangeAddressBase. spliterator()
Returns a spliterator over the CellAddresses in this cell range in row-major order.Methods in org.apache.poi.ss.util with parameters of type CellAddress Modifier and Type Method Description int
CellAddress. compareTo(CellAddress other)
Compare this CellAddress using the "natural" row-major, column-minor ordering.BorderStyle
PropertyTemplate. getBorderStyle(CellAddress cell, String property)
Retrieves the border style for a given cellint
PropertyTemplate. getNumBorderColors(CellAddress cell)
Retrieves the number of border colors assigned to a cellint
PropertyTemplate. getNumBorders(CellAddress cell)
Retrieves the number of borders assigned to a cellshort
PropertyTemplate. getTemplateProperty(CellAddress cell, String property)
Retrieves the border style for a given cellboolean
CellRangeAddressBase. isInRange(CellAddress ref)
Determines if the givenCellAddress
lies within the bounds of this range.Constructors in org.apache.poi.ss.util with parameters of type CellAddress Constructor Description CellAddress(CellAddress address)
Create a new CellAddress object
-