| Modifier and Type | Class and Description |
|---|---|
class |
PDFArray
Represents an array of data elements within a PDF document.
|
class |
PDFBoolean
Represents a boolean data element within a PDF document.
|
class |
PDFDict
Represents an associative collection of data elements within a PDF document.
|
class |
PDFInteger
Represents an integer data element within a PDF document.
|
class |
PDFName
Represents a name data element within a PDF document.
|
class |
PDFReal
Represents a floating point data element within a PDF document.
|
class |
PDFStream
Represents a stream of data within a PDF document.
|
class |
PDFString
Represents an array of unsigned bytes within a PDF document.
|
| Modifier and Type | Method and Description |
|---|---|
PDFObject |
PDFObject.clone()
Makes a new copy of this PDFObject in memory, in the same document and using same direct/indirect setting as this PDFObject.
|
PDFObject |
PDFObject.clone(Document doc)
Makes a new copy of this PDFObject in memory, in the supplied document, using the same direct/indirect setting as this PDFObject.
|
PDFObject |
PDFObject.clone(Document doc,
boolean indirect)
Makes a new copy of this PDFObject in memory, in the supplied document, using supplied direct/indirect setting.
|
PDFObject |
PDFObject.clone(PDFObject obj)
Makes a new copy of this PDFObject in memory, in the same document as another object, using the same direct/indirect setting as this PDFObject.
|
PDFObject |
PDFObject.clone(PDFObject obj,
boolean indirect)
Makes a new copy of this PDFObject in memory, in the same document as another object, using supplied direct/indirect setting.
|
PDFObject |
Document.findPDFObjectByID(int ID)
Retrieves an indirect PDFObject by its ID number.
|
PDFObject |
NumberTree.get(int key)
Retrieves an entry from this NumberTree.
|
PDFObject |
PDFArray.get(int index)
Returns the object at the given index.
|
PDFObject |
PDFDict.get(PDFName key)
Returns the object matching the given key.
|
PDFObject |
NameTree.get(PDFString key)
Retrieves an entry from this NameTree.
|
PDFObject |
PDFDict.get(java.lang.String key)
Returns the object matching the given key string.
|
PDFObject |
ColorSpace.getPDFObject()
Get the PDFObject associated with the color space.
|
PDFObject |
FileSpecification.getPDFObject()
Retrieve the PDFObject representation of this object.
|
PDFObject |
Pattern.getPDFObject() |
PDFObject |
RemoteDestination.getPDFObject()
Retrieve the PDFObject representation of this Remote Destination.
|
| Modifier and Type | Method and Description |
|---|---|
java.util.List<PDFObject> |
PDFDict.getKeys()
Get a list of all keys in the dictionary
|
| Modifier and Type | Method and Description |
|---|---|
void |
PDFArray.add(PDFObject object)
Adds an object to the end of the array
|
boolean |
PDFObjectEnumProc.Call(PDFObject pdfObject,
PDFObject pdfObjectValue) |
PDFObject |
PDFObject.clone(PDFObject obj)
Makes a new copy of this PDFObject in memory, in the same document as another object, using the same direct/indirect setting as this PDFObject.
|
PDFObject |
PDFObject.clone(PDFObject obj,
boolean indirect)
Makes a new copy of this PDFObject in memory, in the same document as another object, using supplied direct/indirect setting.
|
PDFObjectComparison |
PDFObject.compareTo(PDFObject rhs)
Compares this object to another object.
|
void |
PDFArray.insert(int index,
PDFObject object)
Inserts an object at the given index, displacing existing objects.
|
void |
NumberTree.put(int key,
PDFObject value)
Puts a new entry in this NumberTree.
|
void |
PDFArray.put(int index,
PDFObject obj)
Puts an object at the given index, replacing the existing item.
|
void |
PDFDict.put(PDFName key,
PDFObject obj)
Puts an object with the matching key into the dictionary, adding the entry if the key is not already present.
|
void |
NameTree.put(PDFString key,
PDFObject value)
Puts a new entry in this NameTree.
|
void |
PDFDict.put(java.lang.String key,
PDFObject obj)
Puts an object with the matching key string into the dictionary, adding the entry if the key is not already present.
|
void |
PDFArray.remove(PDFObject object)
Removes the first object that matches the given object.
|
| Constructor and Description |
|---|
PDFArray(PDFObject docFromObj,
boolean indirect)
General constructor
|
PDFBoolean(boolean value,
PDFObject docFromObj,
boolean indirect)
General constructor
|
PDFDict(PDFObject docFromObj,
boolean indirect)
General constructor
|
PDFInteger(int value,
PDFObject docFromObj,
boolean indirect)
General constructor
|
PDFName(java.lang.String value,
PDFObject docFromObj,
boolean indirect)
General constructor
|
PDFReal(double value,
PDFObject docFromObj,
boolean indirect)
General constructor
|
PDFStream(java.io.InputStream stream,
PDFObject docFromObj,
PDFDict encoding_dict,
PDFArray encoding_params)
General constructor
|
PDFString(byte[] value,
PDFObject docFromObj,
boolean indirect,
boolean storedAsHex)
General constructor
|
PDFString(java.lang.String value,
PDFObject docFromObj,
boolean indirect,
boolean storedAsHex)
String constructor
|
PDFString(java.lang.String value,
PDFObject docFromObj,
boolean indirect,
boolean storedAsHex,
boolean storedAsUTF16)
String constructor
|