Enum Class ServiceAreaPolygonDetail

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

public enum ServiceAreaPolygonDetail extends Enum<ServiceAreaPolygonDetail>
Specifies the level of detail of the output polygons.

If your analysis covers an urban area with a grid-like street network, the difference between generalized and standard polygons will be minimal. However, for mountain and rural roads, the standard and detailed polygons may present significantly more accurate results than generalized polygons.

Since:
100.1.0
  • Enum Constant Details

    • GENERALIZED

      public static final ServiceAreaPolygonDetail GENERALIZED
      Generalized level.

      Solver creates generalized polygons using the hierarchy present in the network data source in order to produce results quickly.

      Since:
      100.1.0
    • STANDARD

      public static final ServiceAreaPolygonDetail STANDARD
      Standard level.

      Solver creates polygons with a standard level of detail. This is the default for most services.

      Since:
      100.1.0
    • HIGH

      public static final ServiceAreaPolygonDetail HIGH
      High level.

      Solver creates polygons with a higher level of detail for applications in which very precise results are important.

      Since:
      100.1.0
  • Method Details

    • values

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