Package com.itextpdf.kernel.pdf
Class PdfIndirectReference
java.lang.Object
com.itextpdf.kernel.pdf.PdfObject
com.itextpdf.kernel.pdf.PdfIndirectReference
- All Implemented Interfaces:
-
Comparable<PdfIndirectReference>
-
Field Summary
Modifier and TypeFieldDescriptionprotected int
Object generation.protected int
Indirect reference number of object stream containing refersTo object.protected final int
Object number.protected long
Offset in a document of therefersTo
object.protected PdfDocument
PdfDocument object belongs to.protected PdfObject
PdfObject that current PdfIndirectReference instance refers to.Fields inherited from class com.itextpdf.kernel.pdf.PdfObject
ARRAY, BOOLEAN, DICTIONARY, FLUSHED, FORBID_RELEASE, FREE, INDIRECT_REFERENCE, indirectReference, LITERAL, MODIFIED, MUST_BE_FLUSHED, MUST_BE_INDIRECT, NAME, NULL, NUMBER, ORIGINAL_OBJECT_STREAM, READ_ONLY, READING, STREAM, STRING, UNENCRYPTED
-
Constructor Summary
ModifierConstructorDescriptionprotected
PdfIndirectReference
(PdfDocument doc, int objNr) protected
PdfIndirectReference
(PdfDocument doc, int objNr, int genNr) protected
PdfIndirectReference
(PdfDocument doc, int objNr, int genNr, long offset) -
Method Summary
Modifier and TypeMethodDescriptionint
protected void
copyContent
(PdfObject from, PdfDocument document) Copies object content from object 'from'.protected void
copyContent
(PdfObject from, PdfDocument document, ICopyFilter copyFilter) Copies object content from object 'from'.boolean
int
int
getIndex()
Gets refersTo object index in the object stream.int
int
long
Gets refersTo object offset in a document.protected PdfReader
Gets a PdfReader associated with the document object belongs to.getRefersTo
(boolean recursively) Gets direct object and try to resolve indirects chain.byte
getType()
Gets object type.protected PdfWriter
Gets a PdfWriter associated with the document object belongs to.int
hashCode()
boolean
isFree()
Checks if thisPdfIndirectReference
instance corresponds to free indirect reference.protected PdfObject
Creates new instance of object.void
setFree()
Marks indirect reference as free in the document.protected void
setRefersTo
(PdfObject refersTo) protected PdfObject
setState
(short state) Sets special states of current object.toString()
Methods inherited from class com.itextpdf.kernel.pdf.PdfObject
checkState, clearState, clone, clone, copyTo, copyTo, copyTo, copyTo, flush, flush, getIndirectReference, isArray, isBoolean, isDictionary, isFlushed, isIndirect, isIndirectReference, isLiteral, isModified, isName, isNull, isNumber, isReleaseForbidden, isStream, isString, makeIndirect, makeIndirect, release, setIndirectReference, setModified
-
Field Details
-
objNr
protected final int objNrObject number. -
genNr
protected int genNrObject generation. -
refersTo
PdfObject that current PdfIndirectReference instance refers to. -
objectStreamNumber
protected int objectStreamNumberIndirect reference number of object stream containing refersTo object. If refersTo is not placed into object stream - objectStreamNumber = 0. -
offsetOrIndex
protected long offsetOrIndexOffset in a document of therefersTo
object. If the object placed into object stream then it is an object index inside object stream. -
pdfDocument
PdfDocument object belongs to. For direct objects it is null.
-
-
Constructor Details
-
PdfIndirectReference
-
PdfIndirectReference
-
PdfIndirectReference
-
-
Method Details
-
getObjNumber
public int getObjNumber() -
getGenNumber
public int getGenNumber() -
getRefersTo
-
getRefersTo
Gets direct object and try to resolve indirects chain.Note: If chain of references has length of more than 32, this method return 31st reference in chain.
- Parameters:
-
recursively
-true
to resolve indirects chain - Returns:
-
the
PdfObject
result of indirect reference resolving
-
setRefersTo
-
getObjStreamNumber
public int getObjStreamNumber() -
getOffset
public long getOffset()Gets refersTo object offset in a document.- Returns:
- object offset in a document. If refersTo object is in object stream then -1.
-
getIndex
public int getIndex()Gets refersTo object index in the object stream.- Returns:
- object index in a document. If refersTo object is not in object stream then -1.
-
equals
-
hashCode
public int hashCode() -
compareTo
- Specified by:
-
compareTo
in interfaceComparable<PdfIndirectReference>
-
getType
public byte getType()Description copied from class:PdfObject
Gets object type. -
getDocument
-
setFree
public void setFree()Marks indirect reference as free in the document. This doesn't "remove" indirect objects from the document, it only ensures that corresponding xref entry is free and indirect object referred by this reference is no longer linked to it. Actual object still might be written to the resultant document (and would get a new corresponding indirect reference in this case) if it is still contained in some other object.This method will not give any result if the corresponding indirect object or another object that contains a reference to this object is already flushed.
Note: in some cases, removing a link of indirect object to it's indirect reference while leaving the actual object in the document structure might lead to errors, because some objects are expected to always have such explicit link (e.g. Catalog object, page objects, etc).
-
isFree
public boolean isFree()Checks if thisPdfIndirectReference
instance corresponds to free indirect reference. Indirect reference might be in a free state either because it was read as such from the opened existing PDF document or because it was set free viasetFree()
method.- Returns:
-
true
if thisPdfIndirectReference
is free,false
otherwise.
-
toString
-
getWriter
Gets a PdfWriter associated with the document object belongs to.- Returns:
- PdfWriter.
-
getReader
Gets a PdfReader associated with the document object belongs to.- Returns:
- PdfReader.
-
newInstance
Description copied from class:PdfObject
Creates new instance of object.- Specified by:
-
newInstance
in classPdfObject
- Returns:
- new instance of object.
-
copyContent
Description copied from class:PdfObject
Copies object content from object 'from'.- Overrides:
-
copyContent
in classPdfObject
- Parameters:
-
from
- object to copy content from. -
document
- document to copy object to. -
copyFilter
-ICopyFilter
a filter that will apply on dictionaries and array UseNullCopyFilter
for no filtering
-
copyContent
Description copied from class:PdfObject
Copies object content from object 'from'.- Overrides:
-
copyContent
in classPdfObject
- Parameters:
-
from
- object to copy content from. -
document
- document to copy object to.
-
setState
Sets special states of current object.
-