Uses of Class
org.apache.pdfbox.pdmodel.interactive.pagenavigation.PDThreadBead
-
Packages that use PDThreadBead Package Description org.apache.pdfbox.pdmodel The PDModel package represents a high level API for creating and manipulating PDF documents.org.apache.pdfbox.pdmodel.interactive.pagenavigation A package to allow provide access to PDF page navigation functionality. -
-
Uses of PDThreadBead in org.apache.pdfbox.pdmodel
Methods in org.apache.pdfbox.pdmodel that return types with arguments of type PDThreadBead Modifier and Type Method Description java.util.List<PDThreadBead>
PDPage. getThreadBeads()
This will get a list of PDThreadBead objects, which are article threads in the document.Method parameters in org.apache.pdfbox.pdmodel with type arguments of type PDThreadBead Modifier and Type Method Description void
PDPage. setThreadBeads(java.util.List<PDThreadBead> beads)
This will set the list of thread beads. -
Uses of PDThreadBead in org.apache.pdfbox.pdmodel.interactive.pagenavigation
Methods in org.apache.pdfbox.pdmodel.interactive.pagenavigation that return PDThreadBead Modifier and Type Method Description PDThreadBead
PDThread. getFirstBead()
Get the first bead in the thread, or null if it has not been set yet.PDThreadBead
PDThreadBead. getNextBead()
This will get the next bead.PDThreadBead
PDThreadBead. getPreviousBead()
This will get the previous bead.Methods in org.apache.pdfbox.pdmodel.interactive.pagenavigation with parameters of type PDThreadBead Modifier and Type Method Description void
PDThreadBead. appendBead(PDThreadBead append)
Append a bead after this bead.void
PDThread. setFirstBead(PDThreadBead bead)
This will set the first bead in the thread.protected void
PDThreadBead. setNextBead(PDThreadBead next)
Set the next bead in the thread.protected void
PDThreadBead. setPreviousBead(PDThreadBead previous)
Set the previous bead in the thread.
-