|
||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use PageExtractor.Text | |
---|---|
org.faceless.pdf2 | Contains the classes used to create a PDF document |
org.faceless.pdf2.viewer2.feature | Contains a list of all the features that are available to the PDFViewer. |
Uses of PageExtractor.Text in org.faceless.pdf2 |
---|
Fields in org.faceless.pdf2 with type parameters of type PageExtractor.Text | |
---|---|
static Comparator<PageExtractor.Text> |
PageExtractor.DISPLAYORDER
A Comparator which can be used to sort PageExtractor.Text
objects into their "display" order - the order which they visibly appear
on the page, and the order that is returned by PageExtractor.getTextInDisplayOrder() |
static Comparator<PageExtractor.Text> |
PageExtractor.NATURALORDER
A Comparator which can be used to sort PageExtractor.Text
objects into their "natural" order - the order which they occur in the PDF
page stream, and the order that is returned by PageExtractor.getTextUnordered() |
Methods in org.faceless.pdf2 that return PageExtractor.Text | |
---|---|
abstract PageExtractor.Text |
PageExtractor.Text.getPrimaryText()
If this text is a subtext or collection of Text object, return the primary text it starts with. |
abstract PageExtractor.Text |
PageExtractor.Text.getRowNext()
Return the next Text item in this row, or null if there are none |
abstract PageExtractor.Text |
PageExtractor.Text.getRowPrevious()
Return the next Text item in this row, or null if there are none |
abstract PageExtractor.Text |
PageExtractor.Text.getSubText(int off,
int len)
Return a substring of this Text object as another Text object |
Methods in org.faceless.pdf2 with parameters of type PageExtractor.Text | |
---|---|
AttributedString |
PageExtractor.getStyledText(PageExtractor.Text first,
int firstchar,
PageExtractor.Text last,
int lastchar,
boolean displayorder)
Deprecated. see PageExtractor.getStyledText(Text, int, Text, int, Comparator) |
AttributedString |
PageExtractor.getStyledText(PageExtractor.Text first,
int firstchar,
PageExtractor.Text last,
int lastchar,
Comparator<PageExtractor.Text> order)
Return an AttributedString containing a contiguous range of text from this PageExtractor. |
StringBuffer |
PageExtractor.getText(PageExtractor.Text first,
int firstchar,
PageExtractor.Text last,
int lastchar,
boolean displayorder)
Deprecated. see PageExtractor.getStyledText(Text, int, Text, int, Comparator) |
StringBuffer |
PageExtractor.getText(PageExtractor.Text first,
int firstchar,
PageExtractor.Text last,
int lastchar,
Comparator<PageExtractor.Text> order)
Return a StringBuffer containing a contiguous range of text from this PageExtractor. |
Method parameters in org.faceless.pdf2 with type arguments of type PageExtractor.Text | |
---|---|
AttributedString |
PageExtractor.getStyledText(PageExtractor.Text first,
int firstchar,
PageExtractor.Text last,
int lastchar,
Comparator<PageExtractor.Text> order)
Return an AttributedString containing a contiguous range of text from this PageExtractor. |
StringBuffer |
PageExtractor.getText(PageExtractor.Text first,
int firstchar,
PageExtractor.Text last,
int lastchar,
Comparator<PageExtractor.Text> order)
Return a StringBuffer containing a contiguous range of text from this PageExtractor. |
Uses of PageExtractor.Text in org.faceless.pdf2.viewer2.feature |
---|
Methods in org.faceless.pdf2.viewer2.feature that return PageExtractor.Text | |
---|---|
abstract PageExtractor.Text |
TextSelection.Range.getFirst()
Return the first PageExtractor.Text object that is selected |
abstract PageExtractor.Text |
TextSelection.Range.getLast()
Return the last PageExtractor.Text object that is selected |
Methods in org.faceless.pdf2.viewer2.feature with parameters of type PageExtractor.Text | |
---|---|
void |
SearchPanel.Results.addResult(PageExtractor.Text text)
Add the specified PageExtractor.Text to the list of results |
static TextSelection.Range |
TextSelection.Range.createRange(PageExtractor.Text text)
Create a new Range that matches the specified text item |
static TextSelection.Range |
TextSelection.Range.createRange(PageExtractor.Text first,
int firstposition,
PageExtractor.Text last,
int lastposition)
Create a new Range that covers the range of text from first
character firstpositionlast character lastposition
inclusive. |
void |
TextTool.select(PageExtractor.Text text)
Select the specified text. |
Method parameters in org.faceless.pdf2.viewer2.feature with type arguments of type PageExtractor.Text | |
---|---|
void |
TextTool.setOrder(Comparator<PageExtractor.Text> order)
Set the order in which text is selected in this TextTool, either PageExtractor.NATURALORDER or PageExtractor.DISPLAYORDER . |
|
||||||||||
PREV NEXT | FRAMES NO FRAMES |