Package org.opengis.metadata.content
Class CoverageContentType
- java.lang.Object
-
- org.opengis.util.CodeList<CoverageContentType>
-
- org.opengis.metadata.content.CoverageContentType
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.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:
- Serialized Form
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from class org.opengis.util.CodeList
CodeList.Filter
-
-
Field Summary
Fields Modifier and Type Field Description static CoverageContentType
IMAGE
Meaningful numerical representation of a physical parameter that is not the actual value of the physical parameter.static CoverageContentType
PHYSICAL_MEASUREMENT
Value in physical units of the quantity being measured.private static long
serialVersionUID
Serial number for compatibility with different versions.static CoverageContentType
THEMATIC_CLASSIFICATION
Code value with no quantitative meaning, used to represent a physical quantity.private static java.util.List<CoverageContentType>
VALUES
List of all enumerations of this type.
-
Constructor Summary
Constructors Modifier Constructor Description private
CoverageContentType(java.lang.String name)
Constructs an enum with the given name.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description CoverageContentType[]
family()
Returns the list of enumerations of the same kind than this enum.static CoverageContentType
valueOf(java.lang.String code)
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 Detail
-
serialVersionUID
private static final long serialVersionUID
Serial number for compatibility with different versions.- See Also:
- Constant Field Values
-
VALUES
private static final java.util.List<CoverageContentType> 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 IMAGE
Meaningful 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_CLASSIFICATION
Code 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_MEASUREMENT
Value in physical units of the quantity being measured.
-
-
Constructor Detail
-
CoverageContentType
private CoverageContentType(java.lang.String name)
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 Detail
-
values
public static CoverageContentType[] values()
Returns the list ofCoverageContentType
s.- Returns:
- The list of codes declared in the current JVM.
-
family
public CoverageContentType[] 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
public static CoverageContentType valueOf(java.lang.String code)
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.
-
-