Enum Class SpatialCriterion

Object
Enum<SpatialCriterion>
SpatialCriterion
All Implemented Interfaces:
Serializable, Comparable<SpatialCriterion>, Constable

public enum SpatialCriterion extends Enum<SpatialCriterion>
Spatial criterion to restrict candidate operations.
Since:
1.0
See Also:
  • Enum Constant Details

    • STRICT_CONTAINMENT

      public static final SpatialCriterion STRICT_CONTAINMENT
      The area of validity of transforms should strictly contain the are of interest.
    • PARTIAL_INTERSECTION

      public static final SpatialCriterion PARTIAL_INTERSECTION
      The area of validity of transforms should at least intersect the area of interest.
    • DEFAULT

      public static final SpatialCriterion DEFAULT
      The PROJ default value. Documented as STRICT_CONTAINMENT as of PROJ 6.2.
  • Method Details

    • values

      public static SpatialCriterion[] 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

      public static SpatialCriterion valueOf(String name)
      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 name
      NullPointerException - if the argument is null