Package net.opengis.wps20
Interface DataType
-
- All Superinterfaces:
AnyType
,EObject
,Notifier
- All Known Implementing Classes:
DataTypeImpl
public interface DataType extends EObject, AnyType
A representation of the model object 'Data Type'. This element is used to embed the data in a WPS request or response. The content can be XML data, plain character data, or specially encoded binary data (i.e. base64).The following features are supported:
- See Also:
Wps20Package.getDataType()
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description String
getEncoding()
Returns the value of the 'Encoding' attribute.String
getMimeType()
Returns the value of the 'Mime Type' attribute.String
getSchema()
Returns the value of the 'Schema' attribute.void
setEncoding(String value)
Sets the value of the 'Encoding
' attribute.void
setMimeType(String value)
Sets the value of the 'Mime Type
' attribute.void
setSchema(String value)
Sets the value of the 'Schema
' attribute.
-
-
-
Method Detail
-
getEncoding
String getEncoding()
Returns the value of the 'Encoding' attribute. Encoding procedure or character set used (e.g. raw, base64, or UTF-8).- Returns:
- the value of the 'Encoding' attribute.
- See Also:
setEncoding(String)
,Wps20Package.getDataType_Encoding()
-
setEncoding
void setEncoding(String value)
Sets the value of the 'Encoding
' attribute.- Parameters:
value
- the new value of the 'Encoding' attribute.- See Also:
getEncoding()
-
getMimeType
String getMimeType()
Returns the value of the 'Mime Type' attribute. Media type of the data.- Returns:
- the value of the 'Mime Type' attribute.
- See Also:
setMimeType(String)
,Wps20Package.getDataType_MimeType()
-
setMimeType
void setMimeType(String value)
Sets the value of the 'Mime Type
' attribute.- Parameters:
value
- the new value of the 'Mime Type' attribute.- See Also:
getMimeType()
-
getSchema
String getSchema()
Returns the value of the 'Schema' attribute. Identification of the data schema.- Returns:
- the value of the 'Schema' attribute.
- See Also:
setSchema(String)
,Wps20Package.getDataType_Schema()
-
setSchema
void setSchema(String value)
Sets the value of the 'Schema
' attribute.- Parameters:
value
- the new value of the 'Schema' attribute.- See Also:
getSchema()
-
-