| java.lang.Object com.lowagie.text.pdf.PdfIndirectObject
PdfIndirectObject | public class PdfIndirectObject (Code) | | PdfIndirectObject is the Pdf indirect object.
An indirect object is an object that has been labeled so that it can be referenced by
other objects. Any type of PdfObject may be labeled as an indirect object.
An indirect object consists of an object identifier, a direct object, and the endobj
keyword. The object identifier consists of an integer object number, an integer
generation number, and the obj keyword.
This object is described in the 'Portable Document Format Reference Manual version 1.7'
section 3.2.9 (page 63-65).
See Also: PdfObject See Also: PdfIndirectReference |
ENDOBJ | final static byte ENDOBJ(Code) | | |
SIZEOBJ | final static int SIZEOBJ(Code) | | |
STARTOBJ | final static byte STARTOBJ(Code) | | |
generation | protected int generation(Code) | | the generation number
|
number | protected int number(Code) | | The object number
|
PdfIndirectObject | PdfIndirectObject(int number, PdfObject object, PdfWriter writer)(Code) | | Constructs a PdfIndirectObject .
Parameters: number - the object number Parameters: object - the direct object |
PdfIndirectObject | PdfIndirectObject(int number, int generation, PdfObject object, PdfWriter writer)(Code) | | Constructs a PdfIndirectObject .
Parameters: number - the object number Parameters: generation - the generation number Parameters: object - the direct object |
getIndirectReference | public PdfIndirectReference getIndirectReference()(Code) | | Returns a PdfIndirectReference to this PdfIndirectObject .
a PdfIndirectReference |
|
|