Enum Class ServiceAreaPolygonCutoffGeometry

java.lang.Object
java.lang.Enum<ServiceAreaPolygonCutoffGeometry>
com.esri.arcgisruntime.tasks.networkanalysis.ServiceAreaPolygonCutoffGeometry
All Implemented Interfaces:
Serializable, Comparable<ServiceAreaPolygonCutoffGeometry>, Constable

public enum ServiceAreaPolygonCutoffGeometry extends Enum<ServiceAreaPolygonCutoffGeometry>
Service area polygon cutoff geometry.

Specifies the behavior of service area output for a single facility when multiple cutoff values are specified. This parameter does not apply to line output.

Since:
100.1.0
  • Enum Constant Details

    • RINGS

      public static final ServiceAreaPolygonCutoffGeometry RINGS
      Rings behaviour.

      Each polygon includes only the area between consecutive cutoff values. It does not include the area between the facility and any smaller cutoffs. For instance, If you create 5- and 10-minute service areas, then the 5-minute service area polygon will include the area reachable in 0-5 minutes, and the 10-minute service area polygon will include the area reachable between 5 and 10 minutes.

      Since:
      100.1.0
    • DISKS

      public static final ServiceAreaPolygonCutoffGeometry DISKS
      Disks behaviour.

      Each polygon includes the area reachable from the facility up to the cutoff value, including the area reachable within smaller cutoff values. For instance, If you create 5- and 10-minute service areas, then the 10-minute service area polygon will include the area under the 5-minute service area polygon.

      Since:
      100.1.0
  • Method Details

    • values

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