Package net.opengis.wcs11
Interface OutputType
-
- All Superinterfaces:
EObject
,Notifier
- All Known Implementing Classes:
OutputTypeImpl
public interface OutputType extends EObject
A representation of the model object 'Output Type'. Asks for the GetCoverage response to be expressed in a particular CRS and encoded in a particular format. Can also ask for the response coverage to be stored remotely from the client at a URL, instead of being returned in the operation response.The following features are supported:
- See Also:
Wcs111Package.getOutputType()
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description String
getFormat()
Returns the value of the 'Format' attribute.GridCrsType
getGridCRS()
Returns the value of the 'Grid CRS' containment reference.boolean
isSetStore()
Returns whether the value of the 'Store
' attribute is set.boolean
isStore()
Returns the value of the 'Store' attribute.void
setFormat(String value)
Sets the value of the 'Format
' attribute.void
setGridCRS(GridCrsType value)
Sets the value of the 'Grid CRS
' containment reference.void
setStore(boolean value)
Sets the value of the 'Store
' attribute.void
unsetStore()
Unsets the value of the 'Store
' attribute.
-
-
-
Method Detail
-
getGridCRS
GridCrsType getGridCRS()
Returns the value of the 'Grid CRS' containment reference. Optional definition of the GridCRS in which the GetCoverage response shall be expressed. When this GridCRS is not included, the output shall be in the ImageCRS or GridCRS of the offered image, as identified in the CoverageDescription. To request no interpolation, this GridCRS should be omitted.- Returns:
- the value of the 'Grid CRS' containment reference.
- See Also:
setGridCRS(GridCrsType)
,Wcs111Package.getOutputType_GridCRS()
-
setGridCRS
void setGridCRS(GridCrsType value)
Sets the value of the 'Grid CRS
' containment reference.- Parameters:
value
- the new value of the 'Grid CRS' containment reference.- See Also:
getGridCRS()
-
getFormat
String getFormat()
Returns the value of the 'Format' attribute. Identifier of the format in which GetCoverage response shall be encoded. This identifier value shall be among those listed as SupportedFormats in the DescribeCoverage operation response.- Returns:
- the value of the 'Format' attribute.
- See Also:
setFormat(String)
,Wcs111Package.getOutputType_Format()
-
setFormat
void setFormat(String value)
Sets the value of the 'Format
' attribute.- Parameters:
value
- the new value of the 'Format' attribute.- See Also:
getFormat()
-
isStore
boolean isStore()
Returns the value of the 'Store' attribute. The default value is"false"
. Specifies if the output coverage should be stored, remotely from the client at a network URL, instead of being returned with the operation response. This parameter should be included only if this operation parameter is supported by server, as encoded in the OperationsMetadata section of the Capabilities document.- Returns:
- the value of the 'Store' attribute.
- See Also:
isSetStore()
,unsetStore()
,setStore(boolean)
,Wcs111Package.getOutputType_Store()
-
setStore
void setStore(boolean value)
Sets the value of the 'Store
' attribute.- Parameters:
value
- the new value of the 'Store' attribute.- See Also:
isSetStore()
,unsetStore()
,isStore()
-
unsetStore
void unsetStore()
Unsets the value of the 'Store
' attribute.- See Also:
isSetStore()
,isStore()
,setStore(boolean)
-
isSetStore
boolean isSetStore()
Returns whether the value of the 'Store
' attribute is set.- Returns:
- whether the value of the 'Store' attribute is set.
- See Also:
unsetStore()
,isStore()
,setStore(boolean)
-
-