Package org.apache.poi.xssf.binary
Class XSSFBHyperlinksTable
- java.lang.Object
-
- org.apache.poi.xssf.binary.XSSFBHyperlinksTable
-
@Internal public class XSSFBHyperlinksTable extends java.lang.Object
- Since:
- 3.16-beta3
-
-
Constructor Summary
Constructors Constructor Description XSSFBHyperlinksTable(PackagePart sheetPart)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.util.List<XSSFHyperlinkRecord>
findHyperlinkRecord(CellAddress cellAddress)
java.util.Map<CellAddress,java.util.List<XSSFHyperlinkRecord>>
getHyperLinks()
-
-
-
Constructor Detail
-
XSSFBHyperlinksTable
public XSSFBHyperlinksTable(PackagePart sheetPart) throws java.io.IOException
- Throws:
java.io.IOException
-
-
Method Detail
-
getHyperLinks
public java.util.Map<CellAddress,java.util.List<XSSFHyperlinkRecord>> getHyperLinks()
- Returns:
- a map of the hyperlinks. The key is the top left cell address in their CellRange
-
findHyperlinkRecord
public java.util.List<XSSFHyperlinkRecord> findHyperlinkRecord(CellAddress cellAddress)
- Parameters:
cellAddress
- cell address to find- Returns:
- null if not a hyperlink
-
-