Skip to main content

XmpQualifier Class

An XMP qualifier associated with a metadata property.

Declaration

public class XmpQualifier extends JavaObject

Remarks

A qualifier stores additional information about an XMP value, such as language alternatives or custom attributes.

Inherited Members

com.devexpress.system.JavaObject.clone()
com.devexpress.system.JavaObject.equals(java.lang.Object)
com.devexpress.system.JavaObject.hashCode()
com.devexpress.system.JavaObject.initFields()
com.devexpress.system.JavaObject.memberwiseClone()
com.devexpress.system.JavaObject.toString()
java.lang.Object.finalize()
java.lang.Object.getClass()
java.lang.Object.notify()
java.lang.Object.notifyAll()
java.lang.Object.wait()
java.lang.Object.wait(long)
java.lang.Object.wait(long,int)

Inheritance

Object
com.devexpress.system.JavaObject
XmpQualifier

XmpQualifier(String name, String value)

Initializes a new instance of the XmpQualifier class with the specified qualifier name and value.

Declaration

public XmpQualifier(String name, String value)

Parameters

Name Type Description
name String

The qualifier name.

value String

The qualifier value.

Methods

getName() Method

Returns the qualifier name.

Declaration

public String getName()

Returns

Type Description
String

The name of the qualifier.

Remarks

If the qualifier belongs to an XMP namespace, the name includes the namespace prefix.

getType() Method

Returns the type of the qualifier.

Declaration

public XmpQualifierType getType()

Returns

Type Description
XmpQualifierType

The type of the qualifier.

Remarks

The type indicates whether the qualifier is stored as an XML attribute or an XML element.

getValue() Method

Returns the qualifier value.

Declaration

public String getValue()

Returns

Type Description
String

The value stored in the qualifier.