Uses of Class
com.snowtide.pdf.Bookmark
-
Packages that use Bookmark Package Description com.snowtide.pdf This package contains a variety of core abstractions representing PDFDocument
s and theirPage
s, as well as various PDFxStream interfaces and implementations thereof that simply many PDF data extraction use cases. -
-
Uses of Bookmark in com.snowtide.pdf
Methods in com.snowtide.pdf that return Bookmark Modifier and Type Method Description Bookmark
Document. getBookmarks()
If the current PDF document contains a bookmark tree, this function will return its root node.Bookmark
PDFTextStream. getBookmarks()
Deprecated.Bookmark
Bookmark. getChild(int n)
Returns the n-th child of this bookmark.Methods in com.snowtide.pdf that return types with arguments of type Bookmark Modifier and Type Method Description List<Bookmark>
Bookmark. getAllChildren()
Returns a new List of the direct descendants of this bookmark.List<Bookmark>
Bookmark. getAllDescendants()
Performs a full descent of the bookmark tree rooted at this bookmark, adding all descendant child bookmarks to a new list, which is returned.
-