Package net.opengis.wps10
Interface LiteralDataType
- 
- All Superinterfaces:
- EObject,- Notifier
 - All Known Implementing Classes:
- LiteralDataTypeImpl
 
 public interface LiteralDataType extends EObjectA representation of the model object 'Literal Data Type'. One simple literal value (such as an integer or real number) that is embedded in the Execute operation request or response.The following features are supported: - See Also:
- Wps10Package.getLiteralDataType()
 
- 
- 
Method SummaryAll Methods Instance Methods Abstract Methods Modifier and Type Method Description StringgetDataType()Returns the value of the 'Data Type' attribute.StringgetUom()Returns the value of the 'Uom' attribute.StringgetValue()Returns the value of the 'Value' attribute.voidsetDataType(String value)Sets the value of the 'Data Type' attribute.voidsetUom(String value)Sets the value of the 'Uom' attribute.voidsetValue(String value)Sets the value of the 'Value' attribute.
 
- 
- 
- 
Method Detail- 
getValueString getValue() Returns the value of the 'Value' attribute. String containing the Literal value (e.g., "49").- Returns:
- the value of the 'Value' attribute.
- See Also:
- setValue(String),- Wps10Package.getLiteralDataType_Value()
 
 - 
setValuevoid setValue(String value) Sets the value of the 'Value' attribute.- Parameters:
- value- the new value of the 'Value' attribute.
- See Also:
- getValue()
 
 - 
getDataTypeString getDataType() Returns the value of the 'Data Type' attribute. Identifies the data type of this literal input or output. This dataType should be included for each quantity whose value is not a simple string.- Returns:
- the value of the 'Data Type' attribute.
- See Also:
- setDataType(String),- Wps10Package.getLiteralDataType_DataType()
 
 - 
setDataTypevoid setDataType(String value) Sets the value of the 'Data Type' attribute.- Parameters:
- value- the new value of the 'Data Type' attribute.
- See Also:
- getDataType()
 
 - 
getUomString getUom() Returns the value of the 'Uom' attribute. Identifies the unit of measure of this literal input or output. This unit of measure should be referenced for any numerical value that has units (e.g., "meters", but not a more complete reference system). Shall be a UOM identified in the Process description for this input or output.- Returns:
- the value of the 'Uom' attribute.
- See Also:
- setUom(String),- Wps10Package.getLiteralDataType_Uom()
 
 
- 
 
-