Uses of Class
org.pdfbox.cos.COSDictionary

Packages that use COSDictionary
org.pdfbox.cos These are the low level objects that make up a PDF document.  
org.pdfbox.encoding This package contains the implementations for all of the encodings that are used in PDF documents. 
org.pdfbox.filter This package will hold the PDFBox implementations of the filters that are used in PDF documents. 
org.pdfbox.pdfparser The pdfparser package contains classes to parse PDF documents and objects within the document. 
org.pdfbox.pdfwriter This is the persistence layer used to write the PDFBox documents to a stream. 
org.pdfbox.pdmodel The PDModel package represents a high level API for creating and manipulating PDF documents. 
org.pdfbox.pdmodel.common High level PD classes that are used throughout several packages are placed in the PDModel common package. 
org.pdfbox.pdmodel.common.filespecification The file specification package defines classes that are used for the PDF File Specification logic. 
org.pdfbox.pdmodel.common.function This package contains functions that are available in the PDF specification. 
org.pdfbox.pdmodel.documentinterchange.logicalstructure The logical structure package provides a mechanism for incorporating structural information about a document's content into a PDF file. 
org.pdfbox.pdmodel.documentinterchange.prepress This package contains classes for prepress support in PDFBox. 
org.pdfbox.pdmodel.encryption The encryption package will handle the PDF document security handlers and the functionality of pluggable security handlers. 
org.pdfbox.pdmodel.fdf The fdf package will handle all of the logic used for FDF objects inside of the PDF/FDF document. 
org.pdfbox.pdmodel.font Classes to deal with font functionality in a PDF Document. 
org.pdfbox.pdmodel.graphics The PDModel graphics package deals with graphics states, operations, and parameters within the PDF document. 
org.pdfbox.pdmodel.graphics.color This package deals with colors that are stored in a PDF document. 
org.pdfbox.pdmodel.graphics.xobject This package deals with images that are stored in a PDF document. 
org.pdfbox.pdmodel.interactive.action This package represents actions that can be performed in a PDF document. 
org.pdfbox.pdmodel.interactive.action.type This package contains all of the available PDF action types. 
org.pdfbox.pdmodel.interactive.annotation The annotation package contains classes that work with PDF annotation elements. 
org.pdfbox.pdmodel.interactive.digitalsignature The digitial signature library will manage signatures that are stored in the PDF document. 
org.pdfbox.pdmodel.interactive.documentnavigation.outline The outline package allows for a PDF outline(bookmarks) to be created. 
org.pdfbox.pdmodel.interactive.form The interactive package contains classes that deal with interactive annotations such as textfields and buttons. 
org.pdfbox.pdmodel.interactive.pagenavigation A package to allow provide access to PDF page navigation functionality. 
org.pdfbox.pdmodel.interactive.viewerpreferences A package to allow access to document viewing preferences. 
org.pdfbox.util This package contains utility classes that are used by the PDFBox project. 
 

Uses of COSDictionary in org.pdfbox.cos
 

Subclasses of COSDictionary in org.pdfbox.cos
 class COSStream
          This class represents a stream object in a PDF document.
 

Methods in org.pdfbox.cos that return COSDictionary
 COSDictionary COSDocument.getEncryptionDictionary()
          This will get the encryption dictionary if the document is encrypted or null if the document is not encrypted.
 COSDictionary COSDocument.getTrailer()
          This will get the document trailer.
 

Methods in org.pdfbox.cos with parameters of type COSDictionary
 Object ICOSVisitor.visitFromDictionary(COSDictionary obj)
          Notification of visit to dictionary object.
 void COSDocument.setEncryptionDictionary(COSDictionary encDictionary)
          This will set the encryption dictionary, this should only be called when encypting the document.
 void COSDocument.setTrailer(COSDictionary newTrailer)
          // MIT added, maybe this should not be supported as trailer is a persistence construct.
 void COSDictionary.addAll(COSDictionary dic)
          This will add all of the dictionarys keys/values to this dictionary.
 void COSDictionary.mergeInto(COSDictionary dic)
          This will add all of the dictionarys keys/values to this dictionary, but only if they don't already exist.
 

Constructors in org.pdfbox.cos with parameters of type COSDictionary
COSStream(COSDictionary dictionary, RandomAccess storage)
          Constructor.
COSDictionary(COSDictionary dict)
          Copy Constructor.
 

Uses of COSDictionary in org.pdfbox.encoding
 

Constructors in org.pdfbox.encoding with parameters of type COSDictionary
DictionaryEncoding(COSDictionary fontEncoding)
          Constructor.
 

Uses of COSDictionary in org.pdfbox.filter
 

Methods in org.pdfbox.filter with parameters of type COSDictionary
 void RunLengthDecodeFilter.decode(InputStream compressedData, OutputStream result, COSDictionary options)
          This will decode some compressed data.
 void RunLengthDecodeFilter.encode(InputStream rawData, OutputStream result, COSDictionary options)
          This will encode some data.
 void LZWFilter.decode(InputStream compressedData, OutputStream result, COSDictionary options)
          This will decode some compressed data.
 void LZWFilter.encode(InputStream rawData, OutputStream result, COSDictionary options)
          This will encode some data.
 void FlateFilter.decode(InputStream compressedData, OutputStream result, COSDictionary options)
          This will decode some compressed data.
 void FlateFilter.encode(InputStream rawData, OutputStream result, COSDictionary options)
          This will encode some data.
 void Filter.decode(InputStream compressedData, OutputStream result, COSDictionary options)
          This will decode some compressed data.
 void Filter.encode(InputStream rawData, OutputStream result, COSDictionary options)
          This will encode some data.
 void DCTFilter.decode(InputStream compressedData, OutputStream result, COSDictionary options)
          This will decode some compressed data.
 void DCTFilter.encode(InputStream rawData, OutputStream result, COSDictionary options)
          This will encode some data.
 void CCITTFaxDecodeFilter.decode(InputStream compressedData, OutputStream result, COSDictionary options)
          This will decode some compressed data.
 void CCITTFaxDecodeFilter.encode(InputStream rawData, OutputStream result, COSDictionary options)
          This will encode some data.
 void ASCIIHexFilter.decode(InputStream compressedData, OutputStream result, COSDictionary options)
          This will decode some compressed data.
 void ASCIIHexFilter.encode(InputStream rawData, OutputStream result, COSDictionary options)
          This will encode some data.
 void ASCII85Filter.decode(InputStream compressedData, OutputStream result, COSDictionary options)
          This will decode some compressed data.
 void ASCII85Filter.encode(InputStream rawData, OutputStream result, COSDictionary options)
          This will encode some data.
 

Uses of COSDictionary in org.pdfbox.pdfparser
 

Methods in org.pdfbox.pdfparser that return COSDictionary
protected  COSDictionary BaseParser.parseCOSDictionary()
          This will parse a PDF dictionary.
 

Methods in org.pdfbox.pdfparser with parameters of type COSDictionary
protected  COSStream BaseParser.parseCOSStream(COSDictionary dic, RandomAccess file)
          This will read a COSStream from the input stream.
 

Uses of COSDictionary in org.pdfbox.pdfwriter
 

Methods in org.pdfbox.pdfwriter with parameters of type COSDictionary
 Object COSWriter.visitFromDictionary(COSDictionary obj)
          visitFromDictionary method comment.
 

Uses of COSDictionary in org.pdfbox.pdmodel
 

Methods in org.pdfbox.pdmodel that return COSDictionary
 COSDictionary PDResources.getCOSDictionary()
          This will get the underlying dictionary.
 COSDictionary PDPageNode.getDictionary()
          This will get the underlying dictionary that this class acts on.
 COSDictionary PDPage.getCOSDictionary()
          This will get the underlying dictionary that this class acts on.
 COSDictionary PDDocumentNameDictionary.getCOSDictionary()
          Convert this standard java object to a COS object.
 COSDictionary PDDocumentInformation.getDictionary()
          This will get the underlying dictionary that this object wraps.
 COSDictionary PDDocumentCatalog.getCOSDictionary()
          Convert this standard java object to a COS object.
 

Methods in org.pdfbox.pdmodel with parameters of type COSDictionary
protected  PDNameTreeNode PDEmbeddedFilesNameTreeNode.createChildNode(COSDictionary dic)
          Create a child node object.
protected  PDNameTreeNode PDDestinationNameTreeNode.createChildNode(COSDictionary dic)
          Create a child node object.
 

Constructors in org.pdfbox.pdmodel with parameters of type COSDictionary
PDResources(COSDictionary resourceDictionary)
          Prepopulated resources.
PDPageNode(COSDictionary pages)
          Creates a new instance of PDPage.
PDPage(COSDictionary pageDic)
          Creates a new instance of PDPage.
PDEmbeddedFilesNameTreeNode(COSDictionary dic)
          Constructor.
PDDocumentNameDictionary(PDDocumentCatalog cat, COSDictionary names)
          Constructor.
PDDocumentInformation(COSDictionary dic)
          Constructor that is used for a preexisting dictionary.
PDDocumentCatalog(PDDocument doc, COSDictionary rootDictionary)
          Constructor.
PDDestinationNameTreeNode(COSDictionary dic)
          Constructor.
 

Uses of COSDictionary in org.pdfbox.pdmodel.common
 

Subclasses of COSDictionary in org.pdfbox.pdmodel.common
 class COSStreamArray
          This will take an array of streams and sequence them together.
 

Methods in org.pdfbox.pdmodel.common that return COSDictionary
 COSDictionary PDNameTreeNode.getCOSDictionary()
          Convert this standard java object to a COS object.
 COSDictionary COSStreamArray.getDictionary()
          This will get the dictionary that is associated with this stream.
static COSDictionary COSDictionaryMap.convert(Map someMap)
          This will take a map<java.lang.String,org.pdfbox.pdmodel.COSObjectable> and convert it into a COSDictionary<COSName,COSBase>.
 

Methods in org.pdfbox.pdmodel.common with parameters of type COSDictionary
protected  PDNameTreeNode PDNameTreeNode.createChildNode(COSDictionary dic)
          Create a child node object.
static COSDictionaryMap COSDictionaryMap.convertBasicTypesToMap(COSDictionary map)
          This will take a COS dictionary and convert it into COSDictionaryMap.
 

Constructors in org.pdfbox.pdmodel.common with parameters of type COSDictionary
PDNameTreeNode(COSDictionary dict, Class valueClass)
          Constructor.
COSDictionaryMap(Map actualsMap, COSDictionary dicMap)
          Constructor for this map.
COSArrayList(Object actualObject, COSBase item, COSDictionary dictionary, String dictionaryKey)
          This is a really special constructor.
 

Uses of COSDictionary in org.pdfbox.pdmodel.common.filespecification
 

Methods in org.pdfbox.pdmodel.common.filespecification that return COSDictionary
 COSDictionary PDComplexFileSpecification.getCOSDictionary()
          Convert this standard java object to a COS object.
 

Constructors in org.pdfbox.pdmodel.common.filespecification with parameters of type COSDictionary
PDComplexFileSpecification(COSDictionary dict)
          Constructor.
 

Uses of COSDictionary in org.pdfbox.pdmodel.common.function
 

Methods in org.pdfbox.pdmodel.common.function that return COSDictionary
 COSDictionary PDDictionaryFunction.getCOSDictionary()
          Get the underlying cos dictionary.
 

Constructors in org.pdfbox.pdmodel.common.function with parameters of type COSDictionary
PDFunctionType3(COSDictionary functionDictionary)
          Constructor.
PDFunctionType2(COSDictionary functionDictionary)
          Constructor.
PDDictionaryFunction(COSDictionary functionDictionary)
          Constructor.
 

Uses of COSDictionary in org.pdfbox.pdmodel.documentinterchange.logicalstructure
 

Methods in org.pdfbox.pdmodel.documentinterchange.logicalstructure that return COSDictionary
 COSDictionary PDStructureTreeRoot.getCOSDictionary()
          Get the low level dictionary that this object wraps.
 COSDictionary PDStructureElement.getCOSDictionary()
          Get the low level dictionary that this object wraps.
 COSDictionary PDMarkInfo.getDictionary()
          Convert this standard java object to a COS object.
 

Constructors in org.pdfbox.pdmodel.documentinterchange.logicalstructure with parameters of type COSDictionary
PDStructureTreeRoot(COSDictionary dic)
          Constructor for an existing structure element.
PDStructureElement(COSDictionary dic)
          Constructor for an existing structure element.
PDMarkInfo(COSDictionary dic)
          Constructor for an existing MarkInfo element.
 

Uses of COSDictionary in org.pdfbox.pdmodel.documentinterchange.prepress
 

Methods in org.pdfbox.pdmodel.documentinterchange.prepress that return COSDictionary
 COSDictionary PDBoxStyle.getDictionary()
          Convert this standard java object to a COS object.
 

Constructors in org.pdfbox.pdmodel.documentinterchange.prepress with parameters of type COSDictionary
PDBoxStyle(COSDictionary dic)
          Constructor for an existing BoxStyle element.
 

Uses of COSDictionary in org.pdfbox.pdmodel.encryption
 

Fields in org.pdfbox.pdmodel.encryption declared as COSDictionary
protected  COSDictionary PDEncryptionDictionary.encryptionDictionary
          COS encryption dictionary.
 

Methods in org.pdfbox.pdmodel.encryption that return COSDictionary
 COSDictionary PDEncryptionDictionary.getCOSDictionary()
          This will get the dictionary associated with this encryption dictionary.
 

Methods in org.pdfbox.pdmodel.encryption with parameters of type COSDictionary
static PDEncryptionDictionary PDEncryptionManager.getEncryptionDictionary(COSDictionary dictionary)
          Deprecated. This will get the correct security handler for the encryption dictionary.
 

Constructors in org.pdfbox.pdmodel.encryption with parameters of type COSDictionary
PDStandardEncryption(COSDictionary dict)
          Deprecated. Constructor from existing dictionary.
PDEncryptionDictionary(COSDictionary d)
          creates a new encryption dictionary from the low level dictionary provided.
 

Uses of COSDictionary in org.pdfbox.pdmodel.fdf
 

Methods in org.pdfbox.pdmodel.fdf that return COSDictionary
 COSDictionary FDFTemplate.getCOSDictionary()
          Convert this standard java object to a COS object.
 COSDictionary FDFPageInfo.getCOSDictionary()
          Convert this standard java object to a COS object.
 COSDictionary FDFPage.getCOSDictionary()
          Convert this standard java object to a COS object.
 COSDictionary FDFNamedPageReference.getCOSDictionary()
          Convert this standard java object to a COS object.
 COSDictionary FDFJavaScript.getCOSDictionary()
          Convert this standard java object to a COS object.
 COSDictionary FDFIconFit.getCOSDictionary()
          Convert this standard java object to a COS object.
 COSDictionary FDFField.getCOSDictionary()
          Convert this standard java object to a COS object.
 COSDictionary FDFDictionary.getCOSDictionary()
          Convert this standard java object to a COS object.
 COSDictionary FDFCatalog.getCOSDictionary()
          Convert this standard java object to a COS object.
 COSDictionary FDFAnnotation.getCOSDictionary()
          Convert this standard java object to a COS object.
 

Constructors in org.pdfbox.pdmodel.fdf with parameters of type COSDictionary
FDFTemplate(COSDictionary t)
          Constructor.
FDFPageInfo(COSDictionary p)
          Constructor.
FDFPage(COSDictionary p)
          Constructor.
FDFNamedPageReference(COSDictionary r)
          Constructor.
FDFJavaScript(COSDictionary javaScript)
          Constructor.
FDFIconFit(COSDictionary f)
          Constructor.
FDFField(COSDictionary f)
          Constructor.
FDFDictionary(COSDictionary fdfDictionary)
          Constructor.
FDFCatalog(COSDictionary cat)
          Constructor.
FDFAnnotation(COSDictionary a)
          Constructor.
 

Uses of COSDictionary in org.pdfbox.pdmodel.font
 

Fields in org.pdfbox.pdmodel.font declared as COSDictionary
protected  COSDictionary PDFont.font
          The cos dictionary for this font.
 

Methods in org.pdfbox.pdmodel.font that return COSDictionary
 COSDictionary PDFontDescriptorDictionary.getCOSDictionary()
          This will get the dictionary for this object.
 

Methods in org.pdfbox.pdmodel.font with parameters of type COSDictionary
static PDFont PDFontFactory.createFont(COSDictionary dic, Map fontCache)
          Create a font from the dictionary.
static PDFont PDFontFactory.createFont(COSDictionary dic)
          This will create the correct font based on information in the dictionary.
 

Constructors in org.pdfbox.pdmodel.font with parameters of type COSDictionary
PDType3Font(COSDictionary fontDictionary)
          Constructor.
PDType1Font(COSDictionary fontDictionary)
          Constructor.
PDType0Font(COSDictionary fontDictionary)
          Constructor.
PDTrueTypeFont(COSDictionary fontDictionary)
          Constructor.
PDSimpleFont(COSDictionary fontDictionary)
          Constructor.
PDMMType1Font(COSDictionary fontDictionary)
          Constructor.
PDFontDescriptorDictionary(COSDictionary desc)
          Constructor.
PDFont(COSDictionary fontDictionary)
          Constructor.
PDCIDFontType2Font(COSDictionary fontDictionary)
          Constructor.
PDCIDFontType0Font(COSDictionary fontDictionary)
          Constructor.
PDCIDFont(COSDictionary fontDictionary)
          Constructor.
 

Uses of COSDictionary in org.pdfbox.pdmodel.graphics
 

Methods in org.pdfbox.pdmodel.graphics that return COSDictionary
 COSDictionary PDExtendedGraphicsState.getCOSDictionary()
          This will get the underlying dictionary that this class acts on.
 

Constructors in org.pdfbox.pdmodel.graphics with parameters of type COSDictionary
PDExtendedGraphicsState(COSDictionary dictionary)
          Create a graphics state from an existing dictionary.
 

Uses of COSDictionary in org.pdfbox.pdmodel.graphics.color
 

Methods in org.pdfbox.pdmodel.graphics.color that return COSDictionary
 COSDictionary PDDeviceNAttributes.getCOSDictionary()
          This will get the underlying cos dictionary.
 

Constructors in org.pdfbox.pdmodel.graphics.color with parameters of type COSDictionary
PDDeviceNAttributes(COSDictionary attributes)
          Constructor.
 

Uses of COSDictionary in org.pdfbox.pdmodel.graphics.xobject
 

Methods in org.pdfbox.pdmodel.graphics.xobject that return COSDictionary
 COSDictionary PDPixelMap.getDecodeParams()
          DecodeParms is an optional parameter for filters.
 

Uses of COSDictionary in org.pdfbox.pdmodel.interactive.action
 

Methods in org.pdfbox.pdmodel.interactive.action that return COSDictionary
 COSDictionary PDPageAdditionalActions.getCOSDictionary()
          Convert this standard java object to a COS object.
 COSDictionary PDFormFieldAdditionalActions.getCOSDictionary()
          Convert this standard java object to a COS object.
 COSDictionary PDDocumentCatalogAdditionalActions.getCOSDictionary()
          Convert this standard java object to a COS object.
 COSDictionary PDAnnotationAdditionalActions.getCOSDictionary()
          Convert this standard java object to a COS object.
 COSDictionary PDAdditionalActions.getCOSDictionary()
          Convert this standard java object to a COS object.
 

Methods in org.pdfbox.pdmodel.interactive.action with parameters of type COSDictionary
static PDAction PDActionFactory.createAction(COSDictionary action)
          This will create the correct type of action based on the type specified in the dictionary.
 

Constructors in org.pdfbox.pdmodel.interactive.action with parameters of type COSDictionary
PDPageAdditionalActions(COSDictionary a)
          Constructor.
PDFormFieldAdditionalActions(COSDictionary a)
          Constructor.
PDDocumentCatalogAdditionalActions(COSDictionary a)
          Constructor.
PDAnnotationAdditionalActions(COSDictionary a)
          Constructor.
PDAdditionalActions(COSDictionary a)
          Constructor.
 

Uses of COSDictionary in org.pdfbox.pdmodel.interactive.action.type
 

Fields in org.pdfbox.pdmodel.interactive.action.type declared as COSDictionary
protected  COSDictionary PDWindowsLaunchParams.params
          The params dictionary.
protected  COSDictionary PDAction.action
          The action dictionary.
 

Methods in org.pdfbox.pdmodel.interactive.action.type that return COSDictionary
 COSDictionary PDWindowsLaunchParams.getCOSDictionary()
          Convert this standard java object to a COS object.
 COSDictionary PDActionURI.getCOSDictionary()
          Convert this standard java object to a COS object.
 COSDictionary PDActionRemoteGoTo.getCOSDictionary()
          Convert this standard java object to a COS object.
 COSDictionary PDAction.getCOSDictionary()
          Convert this standard java object to a COS object.
 

Constructors in org.pdfbox.pdmodel.interactive.action.type with parameters of type COSDictionary
PDWindowsLaunchParams(COSDictionary p)
          Constructor.
PDActionURI(COSDictionary a)
          Constructor.
PDActionRemoteGoTo(COSDictionary a)
          Constructor.
PDActionLaunch(COSDictionary a)
          Constructor.
PDActionJavaScript(COSDictionary a)
          Constructor #2.
PDActionGoTo(COSDictionary a)
          Constructor.
PDAction(COSDictionary a)
          Constructor.
 

Uses of COSDictionary in org.pdfbox.pdmodel.interactive.annotation
 

Methods in org.pdfbox.pdmodel.interactive.annotation that return COSDictionary
 COSDictionary PDBorderStyleDictionary.getDictionary()
          returns the dictionary.
 COSDictionary PDBorderEffectDictionary.getDictionary()
          returns the dictionary.
 COSDictionary PDAppearanceDictionary.getDictionary()
          returns the dictionary.
 COSDictionary PDAnnotation.getDictionary()
          returns the dictionary.
 

Constructors in org.pdfbox.pdmodel.interactive.annotation with parameters of type COSDictionary
PDBorderStyleDictionary(COSDictionary dict)
          Constructor.
PDBorderEffectDictionary(COSDictionary dict)
          Constructor.
PDAppearanceDictionary(COSDictionary dict)
          Constructor.
PDAnnotationWidget(COSDictionary field)
          Creates a PDWidget from a COSDictionary, expected to be a correct object definition for a field in PDF.
PDAnnotationUnknown(COSDictionary dic)
          Creates an arbitary annotation from a COSDictionary, expected to be a correct object definition for some sort of annotation.
PDAnnotationTextMarkup(COSDictionary field)
          Creates a TextMarkup annotation from a COSDictionary, expected to be a correct object definition.
PDAnnotationText(COSDictionary field)
          Creates a Text annotation from a COSDictionary, expected to be a correct object definition.
PDAnnotationSquareCircle(COSDictionary field)
          Creates a Line annotation from a COSDictionary, expected to be a correct object definition.
PDAnnotationRubberStamp(COSDictionary field)
          Creates a Rubber Stamp annotation from a COSDictionary, expected to be a correct object definition.
PDAnnotationPopup(COSDictionary field)
          Creates a popup annotation from a COSDictionary, expected to be a correct object definition.
PDAnnotationMarkup(COSDictionary dict)
          Constructor.
PDAnnotationLink(COSDictionary field)
          Creates a Link annotation from a COSDictionary, expected to be a correct object definition.
PDAnnotationLine(COSDictionary field)
          Creates a Line annotation from a COSDictionary, expected to be a correct object definition.
PDAnnotationFileAttachment(COSDictionary field)
          Creates a Link annotation from a COSDictionary, expected to be a correct object definition.
PDAnnotation(COSDictionary dict)
          Constructor.
 

Uses of COSDictionary in org.pdfbox.pdmodel.interactive.digitalsignature
 

Methods in org.pdfbox.pdmodel.interactive.digitalsignature that return COSDictionary
 COSDictionary PDSignature.getCOSDictionary()
          Convert this standard java object to a COS object.
 

Constructors in org.pdfbox.pdmodel.interactive.digitalsignature with parameters of type COSDictionary
PDSignature(COSDictionary s)
          Constructor.
 

Uses of COSDictionary in org.pdfbox.pdmodel.interactive.documentnavigation.outline
 

Fields in org.pdfbox.pdmodel.interactive.documentnavigation.outline declared as COSDictionary
protected  COSDictionary PDOutlineNode.node
          The dictionary for this node.
 

Methods in org.pdfbox.pdmodel.interactive.documentnavigation.outline that return COSDictionary
 COSDictionary PDOutlineNode.getCOSDictionary()
          Convert this standard java object to a COS object.
 

Constructors in org.pdfbox.pdmodel.interactive.documentnavigation.outline with parameters of type COSDictionary
PDOutlineNode(COSDictionary dict)
          Default Constructor.
PDOutlineItem(COSDictionary dic)
          Constructor for an existing outline item.
PDDocumentOutline(COSDictionary dic)
          Constructor for an existing document outline.
 

Uses of COSDictionary in org.pdfbox.pdmodel.interactive.form
 

Methods in org.pdfbox.pdmodel.interactive.form that return COSDictionary
 COSDictionary PDField.getDictionary()
          This will get the dictionary associated with this field.
 COSDictionary PDAcroForm.getDictionary()
          This will get the dictionary that this form wraps.
 

Methods in org.pdfbox.pdmodel.interactive.form with parameters of type COSDictionary
static PDField PDFieldFactory.createField(PDAcroForm acroForm, COSDictionary field)
          This method creates a COSField subclass from the given field.
 

Constructors in org.pdfbox.pdmodel.interactive.form with parameters of type COSDictionary
PDVariableText(PDAcroForm theAcroForm, COSDictionary field)
           
PDUnknownField(PDAcroForm theAcroForm, COSDictionary field)
           
PDTextbox(PDAcroForm theAcroForm, COSDictionary field)
           
PDSignature(PDAcroForm theAcroForm, COSDictionary field)
           
PDRadioCollection(PDAcroForm theAcroForm, COSDictionary field)
           
PDPushButton(PDAcroForm theAcroForm, COSDictionary field)
           
PDField(PDAcroForm theAcroForm, COSDictionary field)
          Creates a COSField from a COSDictionary, expected to be a correct object definition for a field in PDF.
PDChoiceField(PDAcroForm theAcroForm, COSDictionary field)
           
PDChoiceButton(PDAcroForm theAcroForm, COSDictionary field)
           
PDCheckbox(PDAcroForm theAcroForm, COSDictionary field)
           
PDAcroForm(PDDocument doc, COSDictionary form)
          Constructor.
 

Uses of COSDictionary in org.pdfbox.pdmodel.interactive.pagenavigation
 

Methods in org.pdfbox.pdmodel.interactive.pagenavigation that return COSDictionary
 COSDictionary PDThreadBead.getDictionary()
          This will get the underlying dictionary that this object wraps.
 COSDictionary PDThread.getDictionary()
          This will get the underlying dictionary that this object wraps.
 

Constructors in org.pdfbox.pdmodel.interactive.pagenavigation with parameters of type COSDictionary
PDThreadBead(COSDictionary b)
          Constructor that is used for a preexisting dictionary.
PDThread(COSDictionary t)
          Constructor that is used for a preexisting dictionary.
 

Uses of COSDictionary in org.pdfbox.pdmodel.interactive.viewerpreferences
 

Methods in org.pdfbox.pdmodel.interactive.viewerpreferences that return COSDictionary
 COSDictionary PDViewerPreferences.getDictionary()
          This will get the underlying dictionary that this object wraps.
 

Constructors in org.pdfbox.pdmodel.interactive.viewerpreferences with parameters of type COSDictionary
PDViewerPreferences(COSDictionary dic)
          Constructor that is used for a preexisting dictionary.
 

Uses of COSDictionary in org.pdfbox.util
 

Methods in org.pdfbox.util that return COSDictionary
 COSDictionary ImageParameters.getDictionary()
          This will get the dictionary that stores the image parameters.
 

Methods in org.pdfbox.util with parameters of type COSDictionary
static void BitFlagHelper.setFlag(COSDictionary dic, String field, int bitFlag, boolean value)
          Sets the given boolean value at bitPos in the flags.
static boolean BitFlagHelper.getFlag(COSDictionary dic, String field, int bitFlag)
          Gets the boolean value from the flags at the given bit position.
 

Constructors in org.pdfbox.util with parameters of type COSDictionary
ImageParameters(COSDictionary params)
          Constructor.