Constructor and Description |
---|
XmpArray(int type)
Initializes a new instance of the
XmpArray class. |
XmpArray(int type,
String[] items)
Initializes a new instance of the
XmpArray class. |
Modifier and Type | Method and Description |
---|---|
void |
addItem(String item)
Adds new item.
|
String[] |
getValues()
Gets array of values inside
XmpArray . |
String |
getXmlValue()
Converts XMP value to the XML representation.
|
String |
toString()
Returns a
System.String that represents this instance. |
public XmpArray(int type, String[] items)
Initializes a new instance of the XmpArray
class.
type
- The type of array.items
- The items list.public XmpArray(int type)
Initializes a new instance of the XmpArray
class.
type
- The type of array.public void addItem(String item)
Adds new item.
item
- The item to be added to list of items.public String getXmlValue()
Converts XMP value to the XML representation.
getXmlValue
in interface IXmlValue
public String toString()
Returns a System.String
that represents this instance.
public String[] getValues()
Gets array of values inside XmpArray
.