Package | Description |
---|---|
com.qoppa.pdf |
General classes used by different objects throughout the library.
|
com.qoppa.pdf.dom |
Classes representing the PDF document object model.
|
com.qoppa.pdfProcess |
jPDFProcess main classes, used to manipulate PDF documents and pages.
|
com.qoppa.pdfText |
jPDFText main classes, used to extract text content from PDF documents.
|
Modifier and Type | Class and Description |
---|---|
class |
TextPositionWithContext
This class represents one result from a text search in a document.
|
Modifier and Type | Method and Description |
---|---|
Vector<TextPosition> |
IPDFPage.findText(String searchText,
boolean caseSensitive,
boolean wholeWords)
This method searches for the given text in the page.
|
Vector<TextPosition> |
IPDFPage.findTextUsingRegex(String regex)
This method searches for the given text in the page.
|
Modifier and Type | Method and Description |
---|---|
Vector<TextPosition> |
PDFPage.findText(String searchText,
boolean caseSensitive,
boolean wholeWords)
This method searches for the given text in the page.
|
Vector<TextPosition> |
PDFPage.findTextUsingRegex(String regex)
This method searches for the given text in the page.
|
Modifier and Type | Method and Description |
---|---|
Vector<TextPosition> |
PDFText.findText(int pageIndex,
String searchText,
boolean caseSensitive,
boolean wholeWords)
Searches a page for text and returns a list of TextPosition objects for each of
the occurrences of the string in the page.
|
Vector<TextPosition> |
PDFText.getLinesWithPositions(int pageIndex)
Returns position information for all the lines of text in the specified page of the
PDF document.
|
Vector<TextPosition> |
PDFText.getWordsWithPositions(int pageIndex)
Returns position information for all the words in the specified page of the
PDF document.
|
Vector<TextPosition> |
PDFText.getWordsWithPositions(int pageIndex,
String wordSeparators)
Returns position information for all the words in the specified page of the
PDF document, given a set of word separators.
|