Enum MetadataBuilder.GridType

java.lang.Object
java.lang.Enum<MetadataBuilder.GridType>
org.apache.sis.internal.storage.MetadataBuilder.GridType
All Implemented Interfaces:
Serializable, Comparable<MetadataBuilder.GridType>, java.lang.constant.Constable
Enclosing class:
MetadataBuilder

public static enum MetadataBuilder.GridType extends Enum<MetadataBuilder.GridType>
The type of grid spatial representation (georectified, georeferenceable or unspecified).
  • Enum Constant Details

    • GEORECTIFIED

      public static final MetadataBuilder.GridType GEORECTIFIED
      Grid is an instance of Georectified.
    • GEOREFERENCEABLE

      public static final MetadataBuilder.GridType GEOREFERENCEABLE
      Grid is an instance of Georeferenceable.
    • UNSPECIFIED

      public static final MetadataBuilder.GridType UNSPECIFIED
      Grid is neither georectified or georeferenceable. A plain GridSpatialRepresentation instance will be used.
  • Constructor Details

    • GridType

      private GridType()
  • Method Details

    • values

      public static MetadataBuilder.GridType[] values()
      Returns an array containing the constants of this enum type, in the order they are declared.
      Returns:
      an array containing the constants of this enum type, in the order they are declared
    • valueOf

      public static MetadataBuilder.GridType valueOf(String name)
      Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)
      Parameters:
      name - the name of the enum constant to be returned.
      Returns:
      the enum constant with the specified name
      Throws:
      IllegalArgumentException - if this enum type has no constant with the specified name
      NullPointerException - if the argument is null