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

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

Introduction

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

The text is from its open source code.

Constructor

PdfDictionary()
Constructs an empty PdfDictionary-object.
PdfDictionary(PdfName type)
Constructs a PdfDictionary-object of a certain type.

Method

booleancontains(PdfName key)
Returns true if this PdfDictionary contains a mapping for the specified key.
PdfObjectget(PdfName key)
Returns the PdfObject associated to the specified key.
PdfArraygetAsArray(PdfName key)
Returns a PdfObject as a PdfArray, resolving indirect references.
PdfDictionarygetAsDict(PdfName key)
Returns a PdfObject as a PdfDictionary, resolving indirect references.
PdfStringgetAsString(PdfName key)
Returns a PdfObject as a PdfString, resolving indirect references.
SetgetKeys()
Get all keys that are set.
voidput(PdfName key, PdfObject object)
Associates the specified PdfObject as value with the specified PdfName as key in this map.
voidremove(PdfName key)
Removes a PdfObject and its key from the PdfDictionary.
intsize()
Returns the number of key-value mappings in this PdfDictionary.