- All Implemented Interfaces:
Serializable
,Comparable<SpatialCriterion>
,Constable
Spatial criterion to restrict candidate operations.
- 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 ConstantDescriptionThe PROJ default value.The area of validity of transforms should at least intersect the area of interest.The area of validity of transforms should strictly contain the are of interest. -
Method Summary
Modifier and TypeMethodDescriptionstatic SpatialCriterion
Returns the enum constant of this class with the specified name.static SpatialCriterion[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
STRICT_CONTAINMENT
The area of validity of transforms should strictly contain the are of interest. -
PARTIAL_INTERSECTION
The area of validity of transforms should at least intersect the area of interest. -
DEFAULT
The PROJ default value. Documented asSTRICT_CONTAINMENT
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
-