Class PdfIndirectReference
java.lang.Object
com.lowagie.text.pdf.PdfObject
com.lowagie.text.pdf.PdfIndirectReference
- Direct Known Subclasses:
PRIndirectReference
Deprecated.
PdfIndirectReference contains a reference to a PdfIndirectObject.
Any object used as an element of an array or as a value in a dictionary may be specified by either a direct object of
an indirect reference. An indirect reference is a reference to an indirect object, and consists of the
indirect object's object number, generation number and the R keyword.
This object is described in the
'Portable Document Format Reference Manual version 1.3' section 4.11 (page 54).
- See Also:
-
Field Summary
FieldsModifier and TypeFieldDescriptionprotected intDeprecated.the generation numberprotected intDeprecated.the object number -
Constructor Summary
ConstructorsModifierConstructorDescriptionprotectedDeprecated.(package private)PdfIndirectReference(int type, int number) Deprecated.Constructs aPdfIndirectReference.(package private)PdfIndirectReference(int type, int number, int generation) Deprecated.Constructs aPdfIndirectReference. -
Method Summary
Modifier and TypeMethodDescriptionintDeprecated.Returns the generation of the object.intDeprecated.Returns the number of the object.toString()Deprecated.Returns theString-representation of thisPdfObject.Methods inherited from class PdfObject
canBeInObjStm, getBytes, getIndRef, isArray, isBoolean, isDictionary, isIndirect, isName, isNull, isNumber, isStream, isString, length, setContent, setIndRef, toPdf, type
-
Field Details
-
number
protected int numberDeprecated.the object number -
generation
protected int generationDeprecated.the generation number
-
-
Constructor Details
-
PdfIndirectReference
protected PdfIndirectReference()Deprecated. -
PdfIndirectReference
PdfIndirectReference(int type, int number, int generation) Deprecated.Constructs aPdfIndirectReference.- Parameters:
type- the type of thePdfObjectthat is referenced tonumber- the object number.generation- the generation number.
-
PdfIndirectReference
PdfIndirectReference(int type, int number) Deprecated.Constructs aPdfIndirectReference.- Parameters:
type- the type of thePdfObjectthat is referenced tonumber- the object number.
-
-
Method Details
-
getNumber
public int getNumber()Deprecated.Returns the number of the object.- Returns:
- a number.
-
getGeneration
public int getGeneration()Deprecated.Returns the generation of the object.- Returns:
- a number.
-
toString
-