Package org.apache.poi.ss.formula.eval
Interface HyperlinkEval
-
- All Known Implementing Classes:
LazyAreaEval
,LazyRefEval
public interface HyperlinkEval
Handle associated hyperlink if this ValueEval is a label of the HYPERLINK function.- Author:
- henrichen
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Hyperlink
getHyperlink()
Returns the associated hyperlink if this ValueEval is a label of the HYPERLINK function.void
setHyperlink(Hyperlink hyperlink)
Sets the associated hyperlink if this ValueEval is a label of the HYPERLINK function.
-
-
-
Method Detail
-
setHyperlink
void setHyperlink(Hyperlink hyperlink)
Sets the associated hyperlink if this ValueEval is a label of the HYPERLINK function.- Parameters:
hyperlink
- the associated hyperlink
-
getHyperlink
Hyperlink getHyperlink()
Returns the associated hyperlink if this ValueEval is a label of the HYPERLINK function.- Returns:
- the associated hyperlink.
-
-