Package org.n52.shetland.ogc.sensorML
Class Term
- java.lang.Object
-
- org.n52.shetland.ogc.sensorML.Term
-
- Direct Known Subclasses:
SmlClassifier,SmlIdentifier
public abstract class Term extends Object
Abtract class represents SensorML 2.0 TermType.- Since:
- 1.0.0
-
-
Constructor Summary
Constructors Constructor Description Term()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetCodeSpace()StringgetDefinition()StringgetLabel()StringgetName()StringgetValue()booleanisSetCodeSpace()booleanisSetDefinition()booleanisSetLabel()booleanisSetName()booleanisSetValue()voidsetCodeSpace(String codeSpace)voidsetDefinition(String definition)voidsetLabel(String label)voidsetName(String name)voidsetValue(String value)
-
-
-
Method Detail
-
getName
public String getName()
- Returns:
- the name
-
setName
public void setName(String name)
- Parameters:
name- the name to set
-
getLabel
public String getLabel()
- Returns:
- the Identifier label
-
setLabel
public void setLabel(String label)
- Parameters:
label- Identifier label
-
getDefinition
public String getDefinition()
- Returns:
- the Classifier definition
-
setDefinition
public void setDefinition(String definition)
- Parameters:
definition- Identifier definition
-
getCodeSpace
public String getCodeSpace()
- Returns:
- the Classifier codeSpace href
-
setCodeSpace
public void setCodeSpace(String codeSpace)
- Parameters:
codeSpace- href Classifier codeSpace href
-
getValue
public String getValue()
- Returns:
- the value
-
setValue
public void setValue(String value)
- Parameters:
value- the value to set
-
isSetName
public boolean isSetName()
- Returns:
true, if the name is set AND not empty
-
isSetLabel
public boolean isSetLabel()
- Returns:
true, if the label is set AND not empty
-
isSetCodeSpace
public boolean isSetCodeSpace()
- Returns:
true, if the codeSpace is set AND not empty
-
isSetDefinition
public boolean isSetDefinition()
- Returns:
true, if the codeSpace is set AND not empty
-
isSetValue
public boolean isSetValue()
- Returns:
true, if the value is set AND not empty
-
-