Package org.apache.uima.resource
Interface Parameter
-
- All Superinterfaces:
java.lang.Cloneable
,MetaDataObject
,java.io.Serializable
,XMLizable
- All Known Implementing Classes:
Parameter_impl
public interface Parameter extends MetaDataObject
A general parameter having a name and a value, which are both strings.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.String
getName()
Gets the name of the parameterjava.lang.String
getValue()
Gets the value of the parameter.void
setName(java.lang.String aName)
Sets the name of the parametervoid
setValue(java.lang.String aValue)
Sets the value of the parameter.-
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
-
-
-
-
Method Detail
-
getName
java.lang.String getName()
Gets the name of the parameter- Returns:
- the name
-
setName
void setName(java.lang.String aName)
Sets the name of the parameter- Parameters:
aName
- the name
-
getValue
java.lang.String getValue()
Gets the value of the parameter.- Returns:
- the value
-
setValue
void setValue(java.lang.String aValue)
Sets the value of the parameter.- Parameters:
aValue
- the value
-
-