Uses of Class
org.apache.pdfbox.io.ScratchFile
-
Packages that use ScratchFile Package Description org.apache.pdfbox.cos These are the low level objects that make up a PDF document.org.apache.pdfbox.io This package contains IO streams.org.apache.pdfbox.pdfparser The pdfparser package contains classes to parse PDF documents and objects within the document.org.apache.pdfbox.preflight.parser -
-
Uses of ScratchFile in org.apache.pdfbox.cos
Fields in org.apache.pdfbox.cos declared as ScratchFile Modifier and Type Field Description private ScratchFile
COSDocument. scratchFile
private ScratchFile
COSOutputStream. scratchFile
private ScratchFile
COSStream. scratchFile
Methods in org.apache.pdfbox.cos with parameters of type ScratchFile Modifier and Type Method Description (package private) static COSInputStream
COSInputStream. create(java.util.List<Filter> filters, COSDictionary parameters, java.io.InputStream in, ScratchFile scratchFile)
Creates a new COSInputStream from an encoded input stream.(package private) static COSInputStream
COSInputStream. create(java.util.List<Filter> filters, COSDictionary parameters, java.io.InputStream in, ScratchFile scratchFile, DecodeOptions options)
Constructors in org.apache.pdfbox.cos with parameters of type ScratchFile Constructor Description COSDocument(ScratchFile scratchFile)
Constructor that will use the provide memory handler for storage of the PDF streams.COSOutputStream(java.util.List<Filter> filters, COSDictionary parameters, java.io.OutputStream output, ScratchFile scratchFile)
Creates a new COSOutputStream writes to an encoded COS stream.COSStream(ScratchFile scratchFile)
Creates a new stream with an empty dictionary. -
Uses of ScratchFile in org.apache.pdfbox.io
Fields in org.apache.pdfbox.io declared as ScratchFile Modifier and Type Field Description private ScratchFile
ScratchFileBuffer. pageHandler
The underlying page handler.Methods in org.apache.pdfbox.io that return ScratchFile Modifier and Type Method Description static ScratchFile
ScratchFile. getMainMemoryOnlyInstance()
Getter for an instance using only unrestricted main memory for buffering (same asnew ScratchFile(MemoryUsageSetting.setupMainMemoryOnly())
).Constructors in org.apache.pdfbox.io with parameters of type ScratchFile Constructor Description ScratchFileBuffer(ScratchFile pageHandler)
Creates a new buffer using pages handled by providedScratchFile
. -
Uses of ScratchFile in org.apache.pdfbox.pdfparser
Methods in org.apache.pdfbox.pdfparser with parameters of type ScratchFile Modifier and Type Method Description private void
PDFParser. init(ScratchFile scratchFile)
Constructors in org.apache.pdfbox.pdfparser with parameters of type ScratchFile Constructor Description PDFParser(RandomAccessRead source, java.lang.String decryptionPassword, java.io.InputStream keyStore, java.lang.String alias, ScratchFile scratchFile)
Constructor.PDFParser(RandomAccessRead source, java.lang.String decryptionPassword, ScratchFile scratchFile)
Constructor.PDFParser(RandomAccessRead source, ScratchFile scratchFile)
Constructor. -
Uses of ScratchFile in org.apache.pdfbox.preflight.parser
Constructors in org.apache.pdfbox.preflight.parser with parameters of type ScratchFile Constructor Description PreflightParser(java.io.File file, ScratchFile scratch)
Constructor.PreflightParser(java.lang.String filename, ScratchFile scratch)
Constructor.PreflightParser(javax.activation.DataSource dataSource, ScratchFile scratch)
Constructor.
-