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:
Defined in the sis-referencing module
- 
Nested Class SummaryNested classes/interfaces inherited from class EnumEnum.EnumDesc<E extends Enum<E>>
- 
Enum Constant SummaryEnum 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 theDENORMALIZATIONmatrix.Inverse of theNORMALIZATIONmatrix.Matrix for converting angular degrees to radians, or any other linear operations needed before to apply a non-linear operation.
- 
Method SummaryModifier 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 Enumclone, compareTo, describeConstable, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
- 
Enum Constant Details- 
NORMALIZATIONMatrix 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_NORMALIZATIONInverse of theNORMALIZATIONmatrix. For example, in a map projection, this matrix is typically (but not necessarily) as below:
- 
DENORMALIZATIONMatrix 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_DENORMALIZATIONInverse of theDENORMALIZATIONmatrix.
 
- 
- 
Method Details- 
valuesReturns 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
 
- 
valueOfReturns 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 name
- NullPointerException- if the argument is null
 
 
-