Uses of Interface
org.apache.poi.ss.usermodel.Hyperlink
-
Packages that use Hyperlink Package Description org.apache.poi.hssf.usermodel The usermodel package maps HSSF low level structures to familiar workbook/sheet modelorg.apache.poi.ss.formula This package contains common internal POI code for manipulating formulas.org.apache.poi.ss.formula.eval org.apache.poi.ss.usermodel -
-
Uses of Hyperlink in org.apache.poi.hssf.usermodel
Classes in org.apache.poi.hssf.usermodel that implement Hyperlink Modifier and Type Class Description class
HSSFHyperlink
Represents an Excel hyperlink.Methods in org.apache.poi.hssf.usermodel with parameters of type Hyperlink Modifier and Type Method Description void
HSSFCell. setHyperlink(Hyperlink hyperlink)
Assign a hyperlink to this cell.Constructors in org.apache.poi.hssf.usermodel with parameters of type Hyperlink Constructor Description HSSFHyperlink(Hyperlink other)
-
Uses of Hyperlink in org.apache.poi.ss.formula
Methods in org.apache.poi.ss.formula that return Hyperlink Modifier and Type Method Description Hyperlink
LazyAreaEval. getHyperlink()
Hyperlink
LazyRefEval. getHyperlink()
Methods in org.apache.poi.ss.formula with parameters of type Hyperlink Modifier and Type Method Description void
LazyAreaEval. setHyperlink(Hyperlink hyperlink)
void
LazyRefEval. setHyperlink(Hyperlink hyperlink)
-
Uses of Hyperlink in org.apache.poi.ss.formula.eval
Methods in org.apache.poi.ss.formula.eval that return Hyperlink Modifier and Type Method Description Hyperlink
BoolEval. getHyperlink()
Hyperlink
HyperlinkEval. getHyperlink()
Returns the associated hyperlink if this ValueEval is a label of the HYPERLINK function.Methods in org.apache.poi.ss.formula.eval with parameters of type Hyperlink Modifier and Type Method Description void
BoolEval. setHyperlink(Hyperlink hyperlink)
void
HyperlinkEval. setHyperlink(Hyperlink hyperlink)
Sets the associated hyperlink if this ValueEval is a label of the HYPERLINK function. -
Uses of Hyperlink in org.apache.poi.ss.usermodel
Methods in org.apache.poi.ss.usermodel that return Hyperlink Modifier and Type Method Description Hyperlink
CreationHelper. createHyperlink(HyperlinkType type)
Creates a new Hyperlink, of the given typeHyperlink
Cell. getHyperlink()
Hyperlink
Sheet. getHyperlink(int row, int column)
Get a Hyperlink in this sheet anchored at row, columnHyperlink
Sheet. getHyperlink(CellAddress addr)
Get a Hyperlink in this sheet located in a cell specified by {code addr}Methods in org.apache.poi.ss.usermodel that return types with arguments of type Hyperlink Modifier and Type Method Description List<? extends Hyperlink>
Sheet. getHyperlinkList()
Get a list of Hyperlinks in this sheetMethods in org.apache.poi.ss.usermodel with parameters of type Hyperlink Modifier and Type Method Description void
Cell. setHyperlink(Hyperlink link)
Assign a hyperlink to this cell
-