Module com.esri.arcgisruntime
Enum Class ServiceAreaPolygonDetail
java.lang.Object
java.lang.Enum<ServiceAreaPolygonDetail>
com.esri.arcgisruntime.tasks.networkanalysis.ServiceAreaPolygonDetail
- All Implemented Interfaces:
Serializable
,Comparable<ServiceAreaPolygonDetail>
,Constable
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
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
-
Method Summary
Modifier and TypeMethodDescriptionstatic ServiceAreaPolygonDetail
Returns the enum constant of this class with the specified name.static ServiceAreaPolygonDetail[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
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
Standard level.Solver creates polygons with a standard level of detail. This is the default for most services.
- Since:
- 100.1.0
-
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
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
-