-
public final class PdfBookmarkRepresents a bookmark in the PDF Table of Contents.
-
-
Constructor Summary
Constructors Constructor Description PdfBookmark(String title, Long pageIndex, List<PdfBookmark> children, String pageLabel)
-
Method Summary
Modifier and Type Method Description final StringgetTitle()final LonggetPageIndex()final List<PdfBookmark>getChildren()final StringgetPageLabel()Actual page label as displayed in the PDF (e.g. final BooleanhasDestination()Helper to verify if the bookmark points to a valid page. -
-
Constructor Detail
-
PdfBookmark
PdfBookmark(String title, Long pageIndex, List<PdfBookmark> children, String pageLabel)
-
-
Method Detail
-
getPageIndex
final Long getPageIndex()
-
getChildren
final List<PdfBookmark> getChildren()
-
getPageLabel
final String getPageLabel()
Actual page label as displayed in the PDF (e.g., "i", "ii", "1", "2", "A-1")
-
hasDestination
final Boolean hasDestination()
Helper to verify if the bookmark points to a valid page.
-
-
-
-