- All Implemented Interfaces:
Serializable
,Comparable<GeodeticCurveType>
,Constable
The different geodetic curve types.
- Since:
- 100.0.0
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantDescriptionA geodesic line (shortest path along two points on the ellipsoid)A great elliptic.A rhumb line (loxodrome)A normal section.The segment shape is preserved in the projection where it is defined. -
Method Summary
Modifier and TypeMethodDescriptionstatic GeodeticCurveType
Returns the enum constant of this class with the specified name.static GeodeticCurveType[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
GEODESIC
A geodesic line (shortest path along two points on the ellipsoid) -
LOXODROME
A rhumb line (loxodrome) -
GREAT_ELLIPTIC
A great elliptic. -
NORMAL_SECTION
A normal section. -
SHAPE_PRESERVING
The segment shape is preserved in the projection where it is defined.
-
-
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
-