Package net.opengis.wps10
Interface LiteralDataType
-
- All Superinterfaces:
EObject
,Notifier
- All Known Implementing Classes:
LiteralDataTypeImpl
public interface LiteralDataType extends EObject
A 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 Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description String
getDataType()
Returns the value of the 'Data Type' attribute.String
getUom()
Returns the value of the 'Uom' attribute.String
getValue()
Returns the value of the 'Value' attribute.void
setDataType(String value)
Sets the value of the 'Data Type
' attribute.void
setUom(String value)
Sets the value of the 'Uom
' attribute.void
setValue(String value)
Sets the value of the 'Value
' attribute.
-
-
-
Method Detail
-
getValue
String 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()
-
setValue
void setValue(String value)
Sets the value of the 'Value
' attribute.- Parameters:
value
- the new value of the 'Value' attribute.- See Also:
getValue()
-
getDataType
String 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()
-
setDataType
void setDataType(String value)
Sets the value of the 'Data Type
' attribute.- Parameters:
value
- the new value of the 'Data Type' attribute.- See Also:
getDataType()
-
getUom
String 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()
-
-