Module org.apache.sis.referencing
Enum Class ContextualParameters.MatrixRole
- All Implemented Interfaces:
Serializable
,Comparable<ContextualParameters.MatrixRole>
,Constable
- Enclosing class:
ContextualParameters
Whether a matrix is used for normalization or denormalization
before or after a non-linear operation.
- Since:
- 0.7
- See Also:
-
Nested Class Summary
Nested classes/interfaces inherited from class Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantDescriptionMatrix for scaling Cartesian coordinates to the size of the planet, or any other linear operations needed after execution of a non-linear operation.Inverse of theDENORMALIZATION
matrix.Inverse of theNORMALIZATION
matrix.Matrix for converting angular degrees to radians, or any other linear operations needed before to apply a non-linear operation. -
Method Summary
Modifier and TypeMethodDescriptionReturns the enum constant of this class with the specified name.static ContextualParameters.MatrixRole[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.Methods inherited from class Enum
clone, compareTo, describeConstable, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
-
Enum Constant Details
-
NORMALIZATION
Matrix for converting angular degrees to radians, or any other linear operations needed before to apply a non-linear operation. For example, in a map projection, this matrix is typically (but not necessarily) as below: -
INVERSE_NORMALIZATION
Inverse of theNORMALIZATION
matrix. For example, in a map projection, this matrix is typically (but not necessarily) as below: -
DENORMALIZATION
Matrix for scaling Cartesian coordinates to the size of the planet, or any other linear operations needed after execution of a non-linear operation. For example, in a map projection, this matrix is typically (but not necessarily) as below: -
INVERSE_DENORMALIZATION
Inverse of theDENORMALIZATION
matrix.
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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 class has no constant with the specified nameNullPointerException
- if the argument is null
-