public class PdfDictionary extends PdfObject
_genNumber, _objNumber| Constructor and Description |
|---|
PdfDictionary()
Creates a PdfDictionary object.
|
PdfDictionary(int objNumber,
int genNumber)
Creates a PdfDictionary object.
|
| Modifier and Type | Method and Description |
|---|---|
void |
add(java.lang.String key,
PdfObject value)
Accumulate an entry into the dictionary.
|
PdfObject |
get(java.lang.String key)
Get the PDFObject whose key has the specified string
value.
|
boolean |
isPdfACompliant()
Return true if it's within the PDF/A implementation limit.
|
java.util.Iterator |
iterator()
Returns an iterator which will successively return
all the values in the dictionary.
|
getGenNumber, getObjNumber, setGenNumber, setObjNumberpublic PdfDictionary(int objNumber,
int genNumber)
objNumber - The PDF object numbergenNumber - The PDF generation numberpublic PdfDictionary()
public void add(java.lang.String key,
PdfObject value)
key - String value of the dictionary keyvalue - PdfObject encapsulation of the dictionary valuepublic PdfObject get(java.lang.String key)
key - The string value of the key to look up.public boolean isPdfACompliant()
public java.util.Iterator iterator()