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

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

Introduction

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

The text is from its open source code.

Constructor

PdfArray(PdfObject object)
Constructs an PdfArray-object, containing 1 PdfObject.
PdfArray(float values[])
Constructs a PdfArray-object, containing all float values in a specified array.
PdfArray(int values[])
Constructs a PdfArray-object, containing all int values in a specified array.
PdfArray(ArrayList l)
Constructs a PdfArray, containing all elements of a specified ArrayList.
PdfArray(PdfArray array)
Constructs an PdfArray-object, containing all PdfObjects in a specified PdfArray.
PdfArray()
Constructs an empty PdfArray-object.

Method

booleanadd(PdfObject object)
Adds a PdfObject to the end of the PdfArray.
booleanadd(float values[])
Adds an array of float values to end of the PdfArray.
booleanadd(int values[])
Adds an array of int values to end of the PdfArray.
ArrayListgetArrayList()
Get the internal arrayList for this PdfArray.
PdfDictionarygetAsDict(int idx)
Returns a PdfObject as a PdfDictionary, resolving indirect references.
PdfNumbergetAsNumber(int idx)
Returns a PdfObject as a PdfNumber, resolving indirect references.
PdfStreamgetAsStream(int idx)
Returns a PdfObject as a PdfStream, resolving indirect references.
PdfStringgetAsString(int idx)
Returns a PdfObject as a PdfString, resolving indirect references.
PdfObjectgetPdfObject(int idx)
Returns the PdfObject with the specified index.
booleanisEmpty()
Returns true if the array is empty.
ListIteratorlistIterator()
Returns the list iterator for the array.
PdfObjectremove(int idx)
Remove the element at the specified position from the array.
intsize()
Returns the number of entries in the array.