Enum CylindricalEqualArea.Variant
java.lang.Object
java.lang.Enum<CylindricalEqualArea.Variant>
org.apache.sis.referencing.operation.projection.CylindricalEqualArea.Variant
- All Implemented Interfaces:
Serializable
,Comparable<CylindricalEqualArea.Variant>
,java.lang.constant.Constable
,ProjectionVariant
- Enclosing class:
CylindricalEqualArea
private static enum CylindricalEqualArea.Variant
extends Enum<CylindricalEqualArea.Variant>
implements ProjectionVariant
The variants of the projection based on the name and identifier of the given operation method.
See
CylindricalEqualArea.variant
for the list of possible values.-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionThe "Lambert Cylindrical Equal Area" case.The "Lambert Cylindrical Equal Area (Spherical)" case. -
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.boolean
Requests the use of authalic radius.static CylindricalEqualArea.Variant
Returns the enum constant of this type with the specified name.static CylindricalEqualArea.Variant[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
Enum Constant Details
-
ELLIPSOIDAL
The "Lambert Cylindrical Equal Area" case. -
SPHERICAL
The "Lambert Cylindrical Equal Area (Spherical)" case.
-
-
Field Details
-
operationName
Name pattern for this variant. -
identifier
EPSG identifier for this variant.
-
-
Constructor Details
-
Variant
Creates a new enumeration value.
-
-
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:
getOperationNamePattern
in interfaceProjectionVariant
- Returns:
- the operation name pattern for this variant, or
null
if none.
-
getIdentifier
EPSG identifier of an operation method for this variant.- Specified by:
getIdentifier
in interfaceProjectionVariant
- Returns:
- EPSG identifier for this variant, or
null
if none.
-
useAuthalicRadius
public boolean useAuthalicRadius()Requests the use of authalic radius.- Specified by:
useAuthalicRadius
in interfaceProjectionVariant
- Returns:
- whether this variant is a spherical variant using authalic radius.
-