- java.lang.Object
-
- java.util.AbstractCollection<E>
-
- java.util.AbstractList<E>
-
- java.util.ArrayList
-
- com.itextpdf.text.xml.xmp.XmpArray
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Cloneable,java.lang.Iterable,java.util.Collection,java.util.List,java.util.RandomAccess
public class XmpArray extends java.util.ArrayListStringBuffer to construct an XMP array.- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description static java.lang.StringALTERNATIVEAn array with alternatives.static java.lang.StringORDEREDAn array that is ordered.protected java.lang.Stringtypethe type of array.static java.lang.StringUNORDEREDAn array that is unordered.
-
Constructor Summary
Constructors Constructor Description XmpArray(java.lang.String type)Creates an XmpArray.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.StringtoString()Returns the String representation of the XmpArray.-
Methods inherited from class java.util.ArrayList
add, add, addAll, addAll, clear, clone, contains, ensureCapacity, equals, forEach, get, hashCode, indexOf, isEmpty, iterator, lastIndexOf, listIterator, listIterator, remove, remove, removeAll, removeIf, removeRange, replaceAll, retainAll, set, size, sort, spliterator, subList, toArray, toArray, trimToSize
-
-
-
-
Field Detail
-
UNORDERED
public static final java.lang.String UNORDERED
An array that is unordered.- See Also:
- Constant Field Values
-
ORDERED
public static final java.lang.String ORDERED
An array that is ordered.- See Also:
- Constant Field Values
-
ALTERNATIVE
public static final java.lang.String ALTERNATIVE
An array with alternatives.- See Also:
- Constant Field Values
-
type
protected java.lang.String type
the type of array.
-
-