- All Implemented Interfaces:
Serializable
,Comparable<IntermediateCRSUse>
,Constable
Describes if and how intermediate CRS should be used.
- Since:
- 1.0
- See Also:
-
Nested Class Summary
Nested classes/interfaces inherited from class Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantDescriptionAlways search for intermediate CRS.The PROJ default value.Only attempt looking for intermediate CRS if there is no direct transformation available.Never search for intermediate CRS. -
Method Summary
Modifier and TypeMethodDescriptionstatic IntermediateCRSUse
Returns the enum constant of this class with the specified name.static IntermediateCRSUse[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
ALWAYS
Always search for intermediate CRS. -
IF_NO_DIRECT_TRANSFORMATION
Only attempt looking for intermediate CRS if there is no direct transformation available. -
NEVER
Never search for intermediate CRS. -
DEFAULT
The PROJ default value. Documented asIF_NO_DIRECT_TRANSFORMATION
as of PROJ 6.2.
-
-
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
-