org.apache.pdfbox.pdfparser
static class: PDFParser.ConflictObj [javadoc |
source]
java.lang.Object
org.apache.pdfbox.pdfparser.PDFParser$ConflictObj
Used to resolve conflicts when a PDF Document has multiple objects with
the same id number. Ideally, we could use the Xref table when parsing
the document to be able to determine which of the objects with the same ID
is correct, but we do not have access to the Xref Table during parsing.
Instead, we queue up the conflicts and resolve them after the Xref has
been parsed. The Objects listed in the Xref Table are kept and the
others are ignored.
Method from org.apache.pdfbox.pdfparser.PDFParser$ConflictObj Summary: |
---|
toString |
Methods from java.lang.Object: |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Method from org.apache.pdfbox.pdfparser.PDFParser$ConflictObj Detail: |
public String toString() {
return "Object(" + offset + ", " + objectKey + ")";
}
|