Uses of Interface
com.snowtide.pdf.layout.BlockParent
-
Packages that use BlockParent 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.com.snowtide.pdf.layout This package contains interfaces and classes that PDFxStream uses to represent the document model implicitly defined by the content rendered by eachPage
in a PDFDocument
. -
-
Uses of BlockParent in com.snowtide.pdf
Methods in com.snowtide.pdf that return BlockParent Modifier and Type Method Description BlockParent
Page. getTextContent()
Equivalent toPage.getTextContent(Direction)
, with a baseDirection
determined byPage.guessDirection()
.BlockParent
Page. getTextContent(Direction baseDir)
Returns a BlockParent instance that contains all Block instances held by this Page, which in turn hold all text content for this Page. -
Uses of BlockParent in com.snowtide.pdf.layout
Subinterfaces of BlockParent in com.snowtide.pdf.layout Modifier and Type Interface Description interface
Block
Instances of this class represent groupings of text at a specific position on aPage
.interface
Table
Blocks of this subtype have been recognized by PDFxStream to contain a table-like structure.Methods in com.snowtide.pdf.layout that return BlockParent Modifier and Type Method Description BlockParent
Table. getRow(int rowIdx)
Returns aBlockParent
instance containing theBlock
s that form the indicated row number.
-