Package org.opengis.metadata.content
Class CoverageContentType
- All Implemented Interfaces:
Serializable
,Comparable<CoverageContentType>
@UML(identifier="MD_CoverageContentTypeCode",
specification=ISO_19115)
public final class CoverageContentType
extends CodeList<CoverageContentType>
Specific type of information represented in the cell.
- Since:
- 2.0
- Version:
- 3.0
- See Also:
-
Nested Class Summary
Nested classes/interfaces inherited from class org.opengis.util.CodeList
CodeList.Filter
-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final CoverageContentType
Meaningful numerical representation of a physical parameter that is not the actual value of the physical parameter.static final CoverageContentType
Value in physical units of the quantity being measured.private static final long
Serial number for compatibility with different versions.static final CoverageContentType
Code value with no quantitative meaning, used to represent a physical quantity.private static final List
<CoverageContentType> List of all enumerations of this type. -
Constructor Summary
ConstructorsModifierConstructorDescriptionprivate
CoverageContentType
(String name) Constructs an enum with the given name. -
Method Summary
Modifier and TypeMethodDescriptionfamily()
Returns the list of enumerations of the same kind than this enum.static CoverageContentType
Returns the coverage content type that matches the given string, or returns a new one if none match it.static CoverageContentType[]
values()
Returns the list ofCoverageContentType
s.
-
Field Details
-
serialVersionUID
private static final long serialVersionUIDSerial number for compatibility with different versions.- See Also:
-
VALUES
List of all enumerations of this type. Must be declared before any enum declaration. -
IMAGE
@UML(identifier="image", obligation=CONDITIONAL, specification=ISO_19115) public static final CoverageContentType IMAGEMeaningful numerical representation of a physical parameter that is not the actual value of the physical parameter. -
THEMATIC_CLASSIFICATION
@UML(identifier="thematicClassification", obligation=CONDITIONAL, specification=ISO_19115) public static final CoverageContentType THEMATIC_CLASSIFICATIONCode value with no quantitative meaning, used to represent a physical quantity. -
PHYSICAL_MEASUREMENT
@UML(identifier="physicalMeasurement", obligation=CONDITIONAL, specification=ISO_19115) public static final CoverageContentType PHYSICAL_MEASUREMENTValue in physical units of the quantity being measured.
-
-
Constructor Details
-
CoverageContentType
Constructs an enum with the given name. The new enum is automatically added to the list returned byvalues()
.- Parameters:
name
- The enum name. This name must not be in use by an other enum of this type.
-
-
Method Details
-
values
Returns the list ofCoverageContentType
s.- Returns:
- The list of codes declared in the current JVM.
-
family
Returns the list of enumerations of the same kind than this enum.- Specified by:
family
in classCodeList<CoverageContentType>
- Returns:
- The codes of the same kind than this code.
-
valueOf
Returns the coverage content type that matches the given string, or returns a new one if none match it.- Parameters:
code
- The name of the code to fetch or to create.- Returns:
- A code matching the given name.
-