Package net.opengis.wcs11
Interface OutputType
- 
- All Superinterfaces:
- EObject,- Notifier
 - All Known Implementing Classes:
- OutputTypeImpl
 
 public interface OutputType extends EObjectA 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 SummaryAll Methods Instance Methods Abstract Methods Modifier and Type Method Description StringgetFormat()Returns the value of the 'Format' attribute.GridCrsTypegetGridCRS()Returns the value of the 'Grid CRS' containment reference.booleanisSetStore()Returns whether the value of the 'Store' attribute is set.booleanisStore()Returns the value of the 'Store' attribute.voidsetFormat(String value)Sets the value of the 'Format' attribute.voidsetGridCRS(GridCrsType value)Sets the value of the 'Grid CRS' containment reference.voidsetStore(boolean value)Sets the value of the 'Store' attribute.voidunsetStore()Unsets the value of the 'Store' attribute.
 
- 
- 
- 
Method Detail- 
getGridCRSGridCrsType 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()
 
 - 
setGridCRSvoid 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()
 
 - 
getFormatString 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()
 
 - 
setFormatvoid setFormat(String value) Sets the value of the 'Format' attribute.- Parameters:
- value- the new value of the 'Format' attribute.
- See Also:
- getFormat()
 
 - 
isStoreboolean 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()
 
 - 
setStorevoid setStore(boolean value) Sets the value of the 'Store' attribute.- Parameters:
- value- the new value of the 'Store' attribute.
- See Also:
- isSetStore(),- unsetStore(),- isStore()
 
 - 
unsetStorevoid unsetStore() Unsets the value of the 'Store' attribute.- See Also:
- isSetStore(),- isStore(),- setStore(boolean)
 
 - 
isSetStoreboolean 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)
 
 
- 
 
-