public final class XmpProperties extends Object
Represents XMP properties.
Modifier and Type | Method and Description |
---|---|
boolean |
containsKey(String xmpKey)
Determines whether key is exist in
XmpProperties . |
boolean |
containsNamespace(String namespaceUri)
Determines whether the specified namespace URI contains in
XmpProperties . |
XmpNodeView |
get_Item(String xmpKey)
Gets the
XmpNodeView with the specified XMP key. |
int |
getCount()
Gets the number of XMP properties.
|
String[] |
getKeys()
Gets a collection containing the keys in the
XmpProperties . |
String[] |
getNamespaces()
Gets a collection of namespaces presented in
XmpProperties . |
public final int getCount()
Gets the number of XMP properties.
public final String[] getKeys()
Gets a collection containing the keys in the XmpProperties
.
public final String[] getNamespaces()
Gets a collection of namespaces presented in XmpProperties
.
public final XmpNodeView get_Item(String xmpKey)
Gets the XmpNodeView
with the specified XMP key.
xmpKey
- The XMP key.
Value:
The XmpNodeView
.com.aspose.ms.System.ArgumentNullException
- XMP key could be null or empty.public final boolean containsKey(String xmpKey)
Determines whether key is exist in XmpProperties
.
xmpKey
- XMP key with prefix. For example: dc:format.true
if key found; otherwise false
.com.aspose.ms.System.ArgumentNullException
- XMP key could not be null.public final boolean containsNamespace(String namespaceUri)
Determines whether the specified namespace URI contains in XmpProperties
.
namespaceUri
- The namespace URI.true
if namespace found; otherwise false
.com.aspose.ms.System.ArgumentNullException
- Namespace URI could not be null.