- All Implemented Interfaces:
Serializable
,Comparable<SourceTargetCRSExtentUse>
,Constable
Specifies how source and target CRS extents should be used to restrict candidate operations.
This is taken into account only if no explicit area of interest is specified.
- 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 ConstantDescriptionTest coordinate operation extent against both CRS extents.The PROJ default value.Test coordinate operation extent against the intersection of both CRS extents.Ignore CRS extent.Test coordinate operation against the smallest of both CRS extents. -
Method Summary
Modifier and TypeMethodDescriptionstatic SourceTargetCRSExtentUse
Returns the enum constant of this class with the specified name.static SourceTargetCRSExtentUse[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
NONE
Ignore CRS extent. -
BOTH
Test coordinate operation extent against both CRS extents. -
INTERSECTION
Test coordinate operation extent against the intersection of both CRS extents. -
SMALLEST
Test coordinate operation against the smallest of both CRS extents. -
DEFAULT
The PROJ default value. Documented asSMALLEST
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
-