Enum ContextualParameters.MatrixRole
java.lang.Object
java.lang.Enum<ContextualParameters.MatrixRole>
org.apache.sis.referencing.operation.transform.ContextualParameters.MatrixRole
- All Implemented Interfaces:
Serializable
,Comparable<ContextualParameters.MatrixRole>
,java.lang.constant.Constable
- Enclosing class:
- ContextualParameters
Whether a matrix is used for normalization or denormalization
before or after a non-linear operation.
- Since:
- 0.7
- Version:
- 0.7
- See Also:
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantsEnum 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. -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionReturns the enum constant of this type with the specified name.static ContextualParameters.MatrixRole[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
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.
-
-
Constructor Details
-
MatrixRole
private MatrixRole()
-
-
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
-