Java com.itextpdf.text.pdf PdfDictionary fields, constructors, methods, implement or subclass

Example usage for Java com.itextpdf.text.pdf PdfDictionary fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for com.itextpdf.text.pdf PdfDictionary.

The text is from its open source code.

Constructor

PdfDictionary()
Constructs an empty PdfDictionary-object.

Method

booleancontains(final PdfName key)
Returns true if this PdfDictionary contains a mapping for the specified key.
PdfObjectget(final PdfName key)
Returns the PdfObject associated to the specified key.
PdfArraygetAsArray(final PdfName key)
Returns a PdfObject as a PdfArray, resolving indirect references.
PdfBooleangetAsBoolean(final PdfName key)
Returns a PdfObject as a PdfBoolean, resolving indirect references.
PdfDictionarygetAsDict(final PdfName key)
Returns a PdfObject as a PdfDictionary, resolving indirect references.
PdfIndirectReferencegetAsIndirectObject(final PdfName key)
Returns a PdfObject as a PdfIndirectReference.
PdfNamegetAsName(final PdfName key)
Returns a PdfObject as a PdfName, resolving indirect references.
PdfNumbergetAsNumber(final PdfName key)
Returns a PdfObject as a PdfNumber, resolving indirect references.
PdfStreamgetAsStream(final PdfName key)
Returns a PdfObject as a PdfStream, resolving indirect references.
PdfStringgetAsString(final PdfName key)
Returns a PdfObject as a PdfString, resolving indirect references.
PdfObjectgetDirectObject(final PdfName key)
Returns the PdfObject associated to the specified key, resolving a possible indirect reference to a direct object.
SetgetKeys()
Get all keys that are set.
voidput(final PdfName key, final PdfObject object)
Associates the specified PdfObject as value with the specified PdfName as key in this map.
voidremove(final PdfName key)
Removes a PdfObject and its key from the PdfDictionary.