Uses of Interface
org.apache.pdfbox.pdmodel.ResourceCache
-
Packages that use ResourceCache Package Description org.apache.pdfbox.pdmodel The PDModel package represents a high level API for creating and manipulating PDF documents.org.apache.pdfbox.pdmodel.font Classes to deal with font functionality in a PDF Document.org.apache.pdfbox.pdmodel.graphics.form This package deals with Form XObjects that are stored in a PDF document.org.apache.pdfbox.pdmodel.graphics.pattern This package deals with patterns which are used instead of colors.org.apache.pdfbox.pdmodel.graphics.state This package deals with graphics states within the PDF document. -
-
Uses of ResourceCache in org.apache.pdfbox.pdmodel
Classes in org.apache.pdfbox.pdmodel that implement ResourceCache Modifier and Type Class Description classDefaultResourceCacheA resource cached based on SoftReference, retains resources until memory pressure causes them to be garbage collected.Fields in org.apache.pdfbox.pdmodel declared as ResourceCache Modifier and Type Field Description private ResourceCachePDResources. cacheprivate ResourceCachePDDocument. resourceCacheprivate ResourceCachePDPage. resourceCacheMethods in org.apache.pdfbox.pdmodel that return ResourceCache Modifier and Type Method Description ResourceCacheDefaultResourceCacheCreateImpl. create()ResourceCacheResourceCacheCreateFunction. create()Creates an instance of a ResourceCache.static ResourceCacheResourceCacheFactory. createResourceCache()Create an instance of a resource cache using the provided function.ResourceCachePDDocument. getResourceCache()Returns the resource cache associated with this document, or null if there is none.ResourceCachePDPage. getResourceCache()Returns the resource cache associated with this page, or null if there is none.ResourceCachePDResources. getResourceCache()Returns the resource cache associated with the Resources, or null if there is none.Methods in org.apache.pdfbox.pdmodel with parameters of type ResourceCache Modifier and Type Method Description voidPDDocument. setResourceCache(ResourceCache resourceCache)Sets the resource cache associated with this document.Constructors in org.apache.pdfbox.pdmodel with parameters of type ResourceCache Constructor Description PDPage(COSDictionary pageDictionary, ResourceCache resourceCache)Creates a new instance of PDPage for reading.PDResources(COSDictionary resourceDictionary, ResourceCache resourceCache)Constructor for reading.PDResources(COSDictionary resourceDictionary, ResourceCache resourceCache, java.util.Map<COSName,java.lang.ref.SoftReference<PDFont>> directFontCache)Constructor for reading. -
Uses of ResourceCache in org.apache.pdfbox.pdmodel.font
Fields in org.apache.pdfbox.pdmodel.font declared as ResourceCache Modifier and Type Field Description private ResourceCachePDType3Font. resourceCacheMethods in org.apache.pdfbox.pdmodel.font with parameters of type ResourceCache Modifier and Type Method Description static PDFontPDFontFactory. createFont(COSDictionary dictionary, ResourceCache resourceCache)Creates a new PDFont instance with the appropriate subclass.Constructors in org.apache.pdfbox.pdmodel.font with parameters of type ResourceCache Constructor Description PDType3Font(COSDictionary fontDictionary, ResourceCache resourceCache)Constructor. -
Uses of ResourceCache in org.apache.pdfbox.pdmodel.graphics.form
Fields in org.apache.pdfbox.pdmodel.graphics.form declared as ResourceCache Modifier and Type Field Description private ResourceCachePDFormXObject. cacheConstructors in org.apache.pdfbox.pdmodel.graphics.form with parameters of type ResourceCache Constructor Description PDFormXObject(COSStream stream, ResourceCache cache)Creates a Form XObject for reading.PDTransparencyGroup(COSStream stream, ResourceCache cache)Creates a Transparency Group for reading. -
Uses of ResourceCache in org.apache.pdfbox.pdmodel.graphics.pattern
Fields in org.apache.pdfbox.pdmodel.graphics.pattern declared as ResourceCache Modifier and Type Field Description private ResourceCachePDTilingPattern. resourceCacheMethods in org.apache.pdfbox.pdmodel.graphics.pattern with parameters of type ResourceCache Modifier and Type Method Description static PDAbstractPatternPDAbstractPattern. create(COSDictionary dictionary, ResourceCache resourceCache)Create the correct PD Model pattern based on the COS base pattern.Constructors in org.apache.pdfbox.pdmodel.graphics.pattern with parameters of type ResourceCache Constructor Description PDTilingPattern(COSDictionary dictionary, ResourceCache resourceCache)Creates a new tiling pattern from the given COS dictionary. -
Uses of ResourceCache in org.apache.pdfbox.pdmodel.graphics.state
Fields in org.apache.pdfbox.pdmodel.graphics.state declared as ResourceCache Modifier and Type Field Description private ResourceCachePDExtendedGraphicsState. cacheprivate ResourceCachePDSoftMask. resourceCacheMethods in org.apache.pdfbox.pdmodel.graphics.state with parameters of type ResourceCache Modifier and Type Method Description static PDSoftMaskPDSoftMask. create(COSBase dictionary, ResourceCache resourceCache)Creates a new soft mask.Constructors in org.apache.pdfbox.pdmodel.graphics.state with parameters of type ResourceCache Constructor Description PDExtendedGraphicsState(COSDictionary dictionary, ResourceCache resourceCache)Create a graphics state from an existing dictionary.PDSoftMask(COSDictionary dictionary, ResourceCache resourceCache)Creates a new soft mask.
-