Uses of Interface
com.snowtide.pdf.layout.Block
-
Packages that use Block 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
.pdfts.examples The source code for all classes in this package are included in every PDFxStream distribution, provided to demonstrate how various interfaces and extension points can be utilized to satisfy specialized PDF data extraction requirements. -
-
Uses of Block in com.snowtide.pdf
Methods in com.snowtide.pdf with parameters of type Block Modifier and Type Method Description void
OutputHandler. endBlock(Block block)
Invoked when PDFxStream has finished processing a Block.void
OutputHandler. startBlock(Block block)
Invoked when a Block is about to be processed.void
VisualOutputTarget. startBlock(Block b)
-
Uses of Block in com.snowtide.pdf.layout
Subinterfaces of Block in com.snowtide.pdf.layout Modifier and Type Interface Description 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 Block Modifier and Type Method Description Block
Block. crop(Region area)
Returns aBlock
that contains only the content held by thisBlock
that intersects the given "query" area.Block
BlockParent. getChild(int idx)
Returns the child and the given index.Block
BlockParent. removeChild(int idx)
Removes and returns the child at the given index.Methods in com.snowtide.pdf.layout with parameters of type Block Modifier and Type Method Description void
BlockParent. addChild(Block b)
void
BlockParent. replaceChild(int idx, Block b)
Replaces the child at the given index with the providedBlock
. -
Uses of Block in pdfts.examples
Methods in pdfts.examples with parameters of type Block Modifier and Type Method Description void
XMLOutputTarget. endBlock(Block block)
void
XMLOutputTarget. startBlock(Block block)
-