Package net.opengis.wcs10
Interface TypedLiteralType
-
- All Superinterfaces:
EObject
,Notifier
- All Known Implementing Classes:
TypedLiteralTypeImpl
public interface TypedLiteralType extends EObject
A representation of the model object 'Typed Literal Type'. A single value for a variable, encoded as a string. This type can be used for one value, for a spacing between allowed values, or for the default value of a parameter. The "type" attribute indicates the datatype of this value (default is a string). The value for a typed literal is found by applying the datatype mapping associated with the datatype URI to the lexical form string.The following features are supported:
- See Also:
Wcs10Package.getTypedLiteralType()
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description String
getType()
Returns the value of the 'Type' attribute.String
getValue()
Returns the value of the 'Value' attribute.void
setType(String value)
Sets the value of the 'Type
' attribute.void
setValue(String value)
Sets the value of the 'Value
' attribute.
-
-
-
Method Detail
-
getValue
String getValue()
Returns the value of the 'Value' attribute.If the meaning of the 'Value' attribute isn't clear, there really should be more of a description here...
- Returns:
- the value of the 'Value' attribute.
- See Also:
setValue(String)
,Wcs10Package.getTypedLiteralType_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()
-
getType
String getType()
Returns the value of the 'Type' attribute. Should be included unless the datatype is string, or this "type" attribute is included in an enclosing element.- Returns:
- the value of the 'Type' attribute.
- See Also:
setType(String)
,Wcs10Package.getTypedLiteralType_Type()
-
-