Package org.apache.poi.hssf.usermodel
Class HSSFHyperlink
java.lang.Object
org.apache.poi.hssf.usermodel.HSSFHyperlink
Represents an Excel hyperlink.
-
Method Summary
Modifier and TypeMethodDescriptionorg.apache.poi.common.Duplicatablecopy()booleanHyperlink address.intReturn the column of the first cell that contains the hyperlinkintReturn the row of the first cell that contains the hyperlinkgetLabel()Return text label for this hyperlinkintReturn the column of the last cell that contains the hyperlinkintReturn the row of the last cell that contains the hyperlinkgetType()Return the type of this hyperlinkinthashCode()voidsetAddress(String address) Hyperlink address.voidsetFirstColumn(int col) Set the column of the first cell that contains the hyperlinkvoidsetFirstRow(int row) Set the row of the first cell that contains the hyperlinkvoidSets text label for this hyperlinkvoidsetLastColumn(int col) Set the column of the last cell that contains the hyperlinkvoidsetLastRow(int row) Set the row of the last cell that contains the hyperlinkvoidsetShortFilename(String shortFilename) Convenience method equivalent tosetAddress(String)voidsetTextMark(String textMark) Convenience method equivalent tosetAddress(String)
-
Method Details
-
getFirstRow
public int getFirstRow()Return the row of the first cell that contains the hyperlink- Specified by:
getFirstRowin interfaceHyperlink- Returns:
- the 0-based row of the cell that contains the hyperlink
-
setFirstRow
public void setFirstRow(int row) Set the row of the first cell that contains the hyperlink- Specified by:
setFirstRowin interfaceHyperlink- Parameters:
row- the 0-based row of the first cell that contains the hyperlink
-
getLastRow
public int getLastRow()Return the row of the last cell that contains the hyperlink- Specified by:
getLastRowin interfaceHyperlink- Returns:
- the 0-based row of the last cell that contains the hyperlink
-
setLastRow
public void setLastRow(int row) Set the row of the last cell that contains the hyperlink- Specified by:
setLastRowin interfaceHyperlink- Parameters:
row- the 0-based row of the last cell that contains the hyperlink
-
getFirstColumn
public int getFirstColumn()Return the column of the first cell that contains the hyperlink- Specified by:
getFirstColumnin interfaceHyperlink- Returns:
- the 0-based column of the first cell that contains the hyperlink
-
setFirstColumn
public void setFirstColumn(int col) Set the column of the first cell that contains the hyperlink- Specified by:
setFirstColumnin interfaceHyperlink- Parameters:
col- the 0-based column of the first cell that contains the hyperlink
-
getLastColumn
public int getLastColumn()Return the column of the last cell that contains the hyperlink- Specified by:
getLastColumnin interfaceHyperlink- Returns:
- the 0-based column of the last cell that contains the hyperlink
-
setLastColumn
public void setLastColumn(int col) Set the column of the last cell that contains the hyperlink- Specified by:
setLastColumnin interfaceHyperlink- Parameters:
col- the 0-based column of the last cell that contains the hyperlink
-
getAddress
Hyperlink address. Depending on the hyperlink type it can be URL, e-mail, path to a file, etc.- Specified by:
getAddressin interfaceHyperlink- Returns:
- the address of this hyperlink
-
getTextMark
-
setTextMark
Convenience method equivalent tosetAddress(String)- Parameters:
textMark- the place in worksheet this hyperlink refers to, e.g. 'Target Sheet'!A1'
-
getShortFilename
-
setShortFilename
Convenience method equivalent tosetAddress(String)- Parameters:
shortFilename- the path to a file this hyperlink points to, e.g. 'readme.txt'
-
setAddress
Hyperlink address. Depending on the hyperlink type it can be URL, e-mail, path to a file, etc.- Specified by:
setAddressin interfaceHyperlink- Parameters:
address- the address of this hyperlink
-
getLabel
Return text label for this hyperlink -
setLabel
Sets text label for this hyperlink -
getType
Return the type of this hyperlink -
copy
public org.apache.poi.common.Duplicatable copy()- Specified by:
copyin interfaceorg.apache.poi.common.Duplicatable- Returns:
- a new HSSFHyperlink based on this
- Since:
- POI 5.1.0
-
equals
-
hashCode
public int hashCode()
-