Package | Description |
---|---|
org.apache.pdfbox.cos |
These are the low level objects that make up a PDF document.
|
org.apache.pdfbox.pdfparser |
The pdfparser package contains classes to parse PDF documents and objects within the document.
|
org.apache.pdfbox.pdfwriter |
This is the persistence layer used to write the PDFBox documents to a stream.
|
org.apache.pdfbox.pdmodel.common |
High level PD classes that are used throughout several packages are placed in the PDModel common package.
|
org.apache.pdfbox.pdmodel.common.filespecification |
The file specification package defines classes that are used for the PDF File Specification logic.
|
org.apache.pdfbox.pdmodel.encryption |
The encryption package will handle the PDF document security handlers and the functionality of pluggable security handlers.
|
org.apache.pdfbox.pdmodel.interactive.documentnavigation.destination |
The destination package allows destinations into a pdf document to be specified.
|
org.apache.pdfbox.pdmodel.interactive.form |
The interactive package contains classes that deal with interactive annotations such as textfields and buttons.
|
org.apache.pdfbox.util |
This package contains utility classes that are used by the PDFBox project.
|
Modifier and Type | Method and Description |
---|---|
static COSString |
COSString.createFromHexString(String hex)
This will create a COS string from a string of hex characters.
|
static COSString |
COSString.createFromHexString(String hex,
boolean force)
Creates a COS string from a string of hex characters, optionally ignoring malformed input.
|
Modifier and Type | Method and Description |
---|---|
Object |
ICOSVisitor.visitFromString(COSString obj)
Notification of visit to string object.
|
Modifier and Type | Method and Description |
---|---|
protected COSString |
BaseParser.parseCOSString()
This will parse a PDF string.
|
protected COSString |
BaseParser.parseCOSString(boolean isDictionary)
Deprecated.
Not needed anymore. Use
BaseParser.parseCOSString() instead. PDFBOX-1437 |
Modifier and Type | Method and Description |
---|---|
protected void |
NonSequentialPDFParser.decryptString(COSString str,
long objNr,
long objGenNr)
Decrypts given COSString.
|
Modifier and Type | Method and Description |
---|---|
Object |
COSWriter.visitFromString(COSString obj)
visitFromString method comment.
|
Constructor and Description |
---|
PDTextStream(COSString str)
Constructor.
|
Constructor and Description |
---|
PDSimpleFileSpecification(COSString fileName)
Constructor.
|
Modifier and Type | Method and Description |
---|---|
COSString |
PDEncryptionDictionary.getRecipientStringAt(int i)
returns the COSString contained in the Recipients field at position i.
|
Modifier and Type | Method and Description |
---|---|
void |
SecurityHandler.decryptString(COSString string,
long objNum,
long genNum)
This will decrypt a string.
|
void |
SecurityHandler.encryptString(COSString string,
long objNum,
long genNum)
This will encrypt a string.
|
Constructor and Description |
---|
PDNamedDestination(COSString dest)
Constructor.
|
Modifier and Type | Method and Description |
---|---|
protected COSString |
PDVariableText.getDefaultAppearance() |
Modifier and Type | Method and Description |
---|---|
static Calendar |
DateConverter.toCalendar(COSString text)
Deprecated.
This method throws an IOException for failure. Replace
calls to it with
DateConverter.toCalendar(String, String[])
and test for failure with
(value == null || value.get(Calendar.YEAR) == INVALID_YEAR) |
Copyright © 2002-2015 The Apache Software Foundation. All Rights Reserved.