Enum TransverseMercator.Variant
java.lang.Object
java.lang.Enum<TransverseMercator.Variant>
org.apache.sis.referencing.operation.projection.TransverseMercator.Variant
- All Implemented Interfaces:
Serializable,Comparable<TransverseMercator.Variant>,ProjectionVariant
- Enclosing class:
- TransverseMercator
private static enum TransverseMercator.Variant
extends Enum<TransverseMercator.Variant>
implements ProjectionVariant
Variants of the map projection. Currently this is informative only
(the south variant is handled with
NormalizedProjection.ParameterRole instead).-
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionThe "South orientated" variant of Transverse Mercator projection. -
Field Summary
Fields -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionEPSG identifier of an operation method for this variant.The expected name pattern of an operation method for this variant.static TransverseMercator.VariantReturns the enum constant of this type with the specified name.static TransverseMercator.Variant[]values()Returns an array containing the constants of this enum type, in the order they are declared.Methods inherited from class java.lang.Enum
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOfMethods inherited from interface org.apache.sis.referencing.operation.projection.ProjectionVariant
useAuthalicRadius
-
Enum Constant Details
-
SOUTH_ORIENTATED
The "South orientated" variant of Transverse Mercator projection.
-
-
Field Details
-
operationName
Name pattern for this variant. -
identifier
EPSG identifier for this variant.
-
-
Constructor Details
-
Variant
-
-
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
-
getOperationNamePattern
The expected name pattern of an operation method for this variant.- Specified by:
getOperationNamePatternin interfaceProjectionVariant- Returns:
- the operation name pattern for this variant, or
nullif none.
-
getIdentifier
EPSG identifier of an operation method for this variant.- Specified by:
getIdentifierin interfaceProjectionVariant- Returns:
- EPSG identifier for this variant, or
nullif none.
-