Uses of Class
com.snowtide.pdf.Configuration
-
Packages that use Configuration Package Description com.snowtide This package containsPDF, the primary entry point for all of PDFxStream.com.snowtide.pdf This package contains a variety of core abstractions representing PDFDocuments and theirPages, as well as various PDFxStream interfaces and implementations thereof that simply many PDF data extraction use cases. -
-
Uses of Configuration in com.snowtide
Methods in com.snowtide with parameters of type Configuration Modifier and Type Method Description static DocumentPDF. open(File pdfFile, byte[] userPasswd, Configuration config)static DocumentPDF. open(InputStream is, String pdfName, byte[] userPasswd, Configuration config)Returns a new openDocumentreading from the PDF data provided by the givenInputStream.static DocumentPDF. open(String pdfFilePath, byte[] userPasswd, Configuration config)Returns a new openDocumentreading from the PDF file found at the given filesystem path.static DocumentPDF. open(ByteBuffer pdfData, String pdfName, byte[] userPasswd, Configuration config)Returns a new openDocumentreading from the PDF data provided by the givenByteBuffer. -
Uses of Configuration in com.snowtide.pdf
Methods in com.snowtide.pdf that return Configuration Modifier and Type Method Description ConfigurationDocument. getConfig()Returns theConfigurationinstance that thisDocumentis using to govern its operation.ConfigurationOutputTarget. getConfig()Returns theConfigurationinstance that thisOutputTargetis currently using.ConfigurationPage. getConfig()Returns theConfigurationinstance provided to this page by its parentDocumentinstance.ConfigurationPDFTextStream. getConfig()Deprecated.static ConfigurationConfiguration. getDefault()Returns the configuration that newDocumentinstances use by default.Methods in com.snowtide.pdf with parameters of type Configuration Modifier and Type Method Description voidDocument. setConfig(Configuration config)Sets theConfigurationinstance that thisDocumentwill use in various contexts to govern its operation.voidOutputTarget. setConfig(Configuration config)Sets theConfigurationinstance thisOutputTargetshould use.voidPDFTextStream. setConfig(Configuration config)Deprecated.static voidConfiguration. setDefault(Configuration defaultConfig)Sets the configuration that newDocumentinstances use by default.Constructors in com.snowtide.pdf with parameters of type Configuration Constructor Description Configuration(Configuration other)Creates a copy of the givenConfigurationinstance.PDFTextStream(File pdfFile, byte[] userPasswd, Configuration config)Deprecated.PDFTextStream(InputStream is, String pdfName, byte[] userPasswd, Configuration config)Deprecated.PDFTextStream(String pdfFilePath, byte[] userPasswd, Configuration config)Deprecated.PDFTextStream(ByteBuffer pdfData, String pdfName, byte[] userPasswd, Configuration config)Deprecated.
-