Class CoverageContentType

java.lang.Object
org.opengis.util.CodeList<CoverageContentType>
org.opengis.metadata.content.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:
  • Field Details

  • Constructor Details

    • CoverageContentType

      private CoverageContentType(String name)
      Constructs an enum with the given name. The new enum is automatically added to the list returned by values().
      Parameters:
      name - The enum name. This name must not be in use by an other enum of this type.
  • Method Details

    • values

      public static CoverageContentType[] values()
      Returns the list of CoverageContentTypes.
      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 class CodeList<CoverageContentType>
      Returns:
      The codes of the same kind than this code.
    • valueOf

      public static CoverageContentType valueOf(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.