| java.lang.Object org.deegree.model.coverage.grid.Format
Constructor Summary | |
public | Format(Code code) Initializes a format with a Code containing a code that will be used as format name and a
code space (optional) that will be interpreted as format vendor. | public | Format(String name, String description, String docURL, String vendor, String version) | public | Format(String name, String description, String docURL, String vendor, String version, GeneralOperationParameterIm[] readParameters, GeneralOperationParameterIm[] writeParameters) |
Format | public Format(Code code)(Code) | | Initializes a format with a Code containing a code that will be used as format name and a
code space (optional) that will be interpreted as format vendor.
Parameters: code - |
Format | public Format(String name, String description, String docURL, String vendor, String version)(Code) | | Parameters: description - Parameters: docURL - Parameters: name - Parameters: vendor - Parameters: version - |
equals | public boolean equals(Object obj)(Code) | | performs a test if the passed Object is equal to this Format. Two Formats are equal if their
names ar equal and (if not null) their vendors and versions are equal.
See Also: java.lang.Object.equals(java.lang.Object) Parameters: obj - object to compare |
getDescription | public String getDescription()(Code) | | Description of the file format. If no description, the value will be null .
the description of the file format. |
getDocURL | public String getDocURL()(Code) | | Documentation URL for the format.
the documentation URL for the format. |
getName | public String getName()(Code) | | Name of the file format.
the name of the file format. |
getReadParameters | public GeneralOperationParameterIm[] getReadParameters()(Code) | | Retrieve the parameter information for a
"org.opengis.coverage.grid.GridCoverageReader#read" read operation.
|
getVendor | public String getVendor()(Code) | | Vendor or agency for the format.
the vendor or agency for the format. |
getVersion | public String getVersion()(Code) | | Version number of the format.
the version number of the format. |
getWriteParameters | public GeneralOperationParameterIm[] getWriteParameters()(Code) | | Retrieve the parameter information for a org.opengis.coverage.grid.GridCoverageWriter#write
operation.
|
setDescription | public void setDescription(String description)(Code) | | Parameters: description - The description to set. |
setDocURL | public void setDocURL(String docURL)(Code) | | Parameters: docURL - The docURL to set. |
setName | public void setName(String name)(Code) | | Parameters: name - The name to set. |
setVendor | public void setVendor(String vendor)(Code) | | Parameters: vendor - The vendor to set. |
setVersion | public void setVersion(String version)(Code) | | Parameters: version - The version to set. |
|
|