Uses of Interface
com.snowtide.pdf.layout.Line
-
Packages that use Line 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 Line in com.snowtide.pdf
Methods in com.snowtide.pdf with parameters of type Line Modifier and Type Method Description void
OutputHandler. endLine(Line line)
Invoked when PDFxStream has finished processing a Line.void
VisualOutputTarget. endLine(Line line)
void
OutputHandler. startLine(Line line)
Invoked when a Line is about to be processed.void
VisualOutputTarget. startLine(Line line)
-
Uses of Line in com.snowtide.pdf.layout
Methods in com.snowtide.pdf.layout that return Line Modifier and Type Method Description Line
Block. getLine(int idx)
Returns theLine
at the given index.Line
Block. removeLine(int idx)
Removes theLine
at the given index from this Block, and returns it.Methods in com.snowtide.pdf.layout that return types with arguments of type Line Modifier and Type Method Description List<? extends Line>
Block. getLines()
Returns a List view of theLine
s held by this Block.
-