Enum SequenceType

java.lang.Object
java.lang.Enum<SequenceType>
org.apache.sis.image.SequenceType
All Implemented Interfaces:
Serializable, Comparable<SequenceType>, java.lang.constant.Constable

public enum SequenceType extends Enum<SequenceType>
Specifies the order in which attribute value records are assigned to grid points. Placeholder for org.opengis.coverage.grid.SequenceType.
Upcoming API change: this class may move to GeoAPI in a future version. If that move happens, the org.apache.sis.image package name would become org.opengis.coverage.
Since:
1.1
Version:
1.1
  • Enum Constant Details

    • LINEAR

      public static final SequenceType LINEAR
      Iterate consecutive grid points along complete grid lines.
  • Constructor Details

    • SequenceType

      private SequenceType()
  • Method Details

    • values

      public static SequenceType[] 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 SequenceType 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