Uses of Class
org.apache.pdfbox.pdmodel.graphics.pattern.PDPatternResources

Packages that use PDPatternResources
org.apache.pdfbox.pdmodel The PDModel package represents a high level API for creating and manipulating PDF documents. 
org.apache.pdfbox.pdmodel.graphics.color This package deals with colors that are stored in a PDF document. 
org.apache.pdfbox.pdmodel.graphics.pattern This package deals with patterns which are used instead of colors. 
 

Uses of PDPatternResources in org.apache.pdfbox.pdmodel
 

Methods in org.apache.pdfbox.pdmodel that return types with arguments of type PDPatternResources
 Map<String,PDPatternResources> PDResources.getPatterns()
          This will get the map of patterns.
 

Method parameters in org.apache.pdfbox.pdmodel with type arguments of type PDPatternResources
 void PDResources.setPatterns(Map<String,PDPatternResources> patternsValue)
          This will set the map of patterns.
 

Uses of PDPatternResources in org.apache.pdfbox.pdmodel.graphics.color
 

Methods in org.apache.pdfbox.pdmodel.graphics.color that return PDPatternResources
 PDPatternResources PDColorState.getPattern()
          This will get the current pattern.
 

Methods in org.apache.pdfbox.pdmodel.graphics.color with parameters of type PDPatternResources
 void PDColorState.setPattern(PDPatternResources patternValue)
          This will update the current pattern.
 

Method parameters in org.apache.pdfbox.pdmodel.graphics.color with type arguments of type PDPatternResources
static PDColorSpace PDColorSpaceFactory.createColorSpace(COSBase colorSpace, Map<String,PDColorSpace> colorSpaces, Map<String,PDPatternResources> patterns)
          This will create the correct color space given the name.
 

Uses of PDPatternResources in org.apache.pdfbox.pdmodel.graphics.pattern
 

Subclasses of PDPatternResources in org.apache.pdfbox.pdmodel.graphics.pattern
 class PDShadingPatternResources
          This represents the resources for a shading pattern.
 class PDTilingPatternResources
          This represents the resources for a tiling pattern.
 

Methods in org.apache.pdfbox.pdmodel.graphics.pattern that return PDPatternResources
static PDPatternResources PDPatternResources.create(COSDictionary resourceDictionary)
          Create the correct PD Model pattern based on the COS base pattern.