Package org.apache.sis.image
Enum SequenceType
- All Implemented Interfaces:
Serializable
,Comparable<SequenceType>
,java.lang.constant.Constable
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
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum Constants -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionstatic SequenceType
Returns the enum constant of this type with the specified name.static SequenceType[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
Enum Constant Details
-
LINEAR
Iterate consecutive grid points along complete grid lines.
-
-
Constructor Details
-
SequenceType
private SequenceType()
-
-
Method Details
-
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
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 nameNullPointerException
- if the argument is null
-