Class NameValuePair_impl
- java.lang.Object
-
- org.apache.uima.resource.metadata.impl.MetaDataObject_impl
-
- org.apache.uima.resource.metadata.impl.NameValuePair_impl
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Cloneable
,MetaDataObject
,NameValuePair
,XMLizable
public class NameValuePair_impl extends MetaDataObject_impl implements NameValuePair
Reference implementation ofNameValuePair
.- See Also:
- Serialized Form
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from class org.apache.uima.resource.metadata.impl.MetaDataObject_impl
MetaDataObject_impl.MetaDataAttr, MetaDataObject_impl.SerialContext, MetaDataObject_impl.Serializer
-
-
Field Summary
Fields Modifier and Type Field Description private java.lang.String
mName
Nameprivate java.lang.Object
mValue
Value(package private) static long
serialVersionUID
private static XmlizationInfo
XMLIZATION_INFO
-
Fields inherited from class org.apache.uima.resource.metadata.impl.MetaDataObject_impl
serialContext
-
-
Constructor Summary
Constructors Constructor Description NameValuePair_impl()
Creates a newNameValuePair_impl
with a null name and value.NameValuePair_impl(java.lang.String aName, java.lang.Object aValue)
Creates a newNameValuePair_impl
with the specified name and value.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.String
getName()
Gets the name.java.lang.Object
getValue()
Gets the value.protected XmlizationInfo
getXmlizationInfo()
To be implemented by subclasses to return information describing how to represent this object in XML.void
setName(java.lang.String aName)
Sets the name.void
setValue(java.lang.Object aValue)
Sets the value.-
Methods inherited from class org.apache.uima.resource.metadata.impl.MetaDataObject_impl
buildFromXMLElement, buildFromXMLElement, clone, equals, getAdditionalAttributes, getAttributeClass, getAttributes, getAttributeValue, getInfoset, getMatchingNode, getPropertyDescriptors, getPropertyXmlInfo, getRelativePathBase, getSerialContext, getSourceUrl, getSourceUrlString, getUnfilteredAttributes, getWrapperClass, getXMLAttributes, hashCode, isModifiable, listAttributes, readArrayPropertyValueFromXMLElement, readMapPropertyFromXml, readPropertyValueFromXMLElement, readUnknownPropertyValueFromXMLElement, resolveSettings, setAttributeValue, setInfoset, setSourceUrl, setSourceUrlIfNull, toString, toXML, toXML, toXML, toXML, valueIsNullOrEmptyArray, writeArrayPropertyAsElement, writeMapPropertyToXml, writePropertyAsElement
-
Methods inherited from class java.lang.Object
finalize, getClass, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface org.apache.uima.resource.metadata.MetaDataObject
clone, equals, getAttributeValue, getSourceUrl, getSourceUrlString, isModifiable, listAttributes, setAttributeValue, setSourceUrl
-
Methods inherited from interface org.apache.uima.util.XMLizable
buildFromXMLElement, buildFromXMLElement, toXML, toXML, toXML, toXML
-
-
-
-
Field Detail
-
serialVersionUID
static final long serialVersionUID
- See Also:
- Constant Field Values
-
mName
private java.lang.String mName
Name
-
mValue
private java.lang.Object mValue
Value
-
XMLIZATION_INFO
private static final XmlizationInfo XMLIZATION_INFO
-
-
Constructor Detail
-
NameValuePair_impl
public NameValuePair_impl()
Creates a newNameValuePair_impl
with a null name and value.
-
NameValuePair_impl
public NameValuePair_impl(java.lang.String aName, java.lang.Object aValue)
Creates a newNameValuePair_impl
with the specified name and value.- Parameters:
aName
- a nameaValue
- a value
-
-
Method Detail
-
getName
public java.lang.String getName()
Gets the name.- Specified by:
getName
in interfaceNameValuePair
- Returns:
- the name
-
setName
public void setName(java.lang.String aName)
Sets the name.- Specified by:
setName
in interfaceNameValuePair
- Parameters:
aName
- a name
-
getValue
public java.lang.Object getValue()
Gets the value.- Specified by:
getValue
in interfaceNameValuePair
- Returns:
- the value
-
setValue
public void setValue(java.lang.Object aValue)
Sets the value.- Specified by:
setValue
in interfaceNameValuePair
- Parameters:
aValue
- a value
-
getXmlizationInfo
protected XmlizationInfo getXmlizationInfo()
Description copied from class:MetaDataObject_impl
To be implemented by subclasses to return information describing how to represent this object in XML.- Specified by:
getXmlizationInfo
in classMetaDataObject_impl
- Returns:
- information defining this object's XML representation
-
-