Uses of Class
org.apache.pdfbox.pdfwriter.COSWriterXRefEntry
-
Packages that use COSWriterXRefEntry Package Description org.apache.pdfbox.pdfparser The pdfparser package contains classes to parse PDF documents and objects within the document.org.apache.pdfbox.pdfwriter This is the persistence layer used to write the PDFBox documents to a stream. -
-
Uses of COSWriterXRefEntry in org.apache.pdfbox.pdfparser
Methods in org.apache.pdfbox.pdfparser with parameters of type COSWriterXRefEntry Modifier and Type Method Description void
PDFXRefStream. addEntry(COSWriterXRefEntry entry)
Add an new entry to the XRef stream. -
Uses of COSWriterXRefEntry in org.apache.pdfbox.pdfwriter
Fields in org.apache.pdfbox.pdfwriter declared as COSWriterXRefEntry Modifier and Type Field Description private static COSWriterXRefEntry
COSWriterXRefEntry. NULLENTRY
Fields in org.apache.pdfbox.pdfwriter with type parameters of type COSWriterXRefEntry Modifier and Type Field Description private java.util.List<COSWriterXRefEntry>
COSWriter. xRefEntries
Methods in org.apache.pdfbox.pdfwriter that return COSWriterXRefEntry Modifier and Type Method Description static COSWriterXRefEntry
COSWriterXRefEntry. getNullEntry()
This will return a null entry: 0000000000 65535 f.Methods in org.apache.pdfbox.pdfwriter that return types with arguments of type COSWriterXRefEntry Modifier and Type Method Description protected java.util.List<COSWriterXRefEntry>
COSWriter. getXRefEntries()
This will get the xref entries.Methods in org.apache.pdfbox.pdfwriter with parameters of type COSWriterXRefEntry Modifier and Type Method Description protected void
COSWriter. addXRefEntry(COSWriterXRefEntry entry)
add an entry in the x ref table for later dump.int
COSWriterXRefEntry. compareTo(COSWriterXRefEntry obj)
private void
COSWriter. writeXrefEntry(COSWriterXRefEntry entry)
Method parameters in org.apache.pdfbox.pdfwriter with type arguments of type COSWriterXRefEntry Modifier and Type Method Description protected java.lang.Long[]
COSWriter. getXRefRanges(java.util.List<COSWriterXRefEntry> xRefEntriesList)
check the xref entries and write out the ranges.
-