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 inherited from class org.apache.uima.resource.metadata.impl.MetaDataObject_impl
serialContext
-
-
Constructor Summary
Constructors Constructor Description NameValuePair_impl()Creates a newNameValuePair_implwith a null name and value.NameValuePair_impl(java.lang.String aName, java.lang.Object aValue)Creates a newNameValuePair_implwith the specified name and value.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.StringgetName()Gets the name.java.lang.ObjectgetValue()Gets the value.protected XmlizationInfogetXmlizationInfo()To be implemented by subclasses to return information describing how to represent this object in XML.voidsetName(java.lang.String aName)Sets the name.voidsetValue(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, getAttributeValue, getInfoset, getMatchingNode, getPropertyDescriptors, getPropertyXmlInfo, getRelativePathBase, getSerialContext, getSourceUrl, getSourceUrlString, 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
-
-
-
-
Constructor Detail
-
NameValuePair_impl
public NameValuePair_impl()
Creates a newNameValuePair_implwith a null name and value.
-
NameValuePair_impl
public NameValuePair_impl(java.lang.String aName, java.lang.Object aValue)Creates a newNameValuePair_implwith the specified name and value.- Parameters:
aName- a nameaValue- a value
-
-
Method Detail
-
getName
public java.lang.String getName()
Gets the name.- Specified by:
getNamein interfaceNameValuePair- Returns:
- the name
-
setName
public void setName(java.lang.String aName)
Sets the name.- Specified by:
setNamein interfaceNameValuePair- Parameters:
aName- a name
-
getValue
public java.lang.Object getValue()
Gets the value.- Specified by:
getValuein interfaceNameValuePair- Returns:
- the value
-
setValue
public void setValue(java.lang.Object aValue)
Sets the value.- Specified by:
setValuein interfaceNameValuePair- Parameters:
aValue- a value
-
getXmlizationInfo
protected XmlizationInfo getXmlizationInfo()
Description copied from class:MetaDataObject_implTo be implemented by subclasses to return information describing how to represent this object in XML.- Specified by:
getXmlizationInfoin classMetaDataObject_impl- Returns:
- information defining this object's XML representation
-
-