IsolineCalculationMode (API Reference)
Package com.here.sdk.routing
Enum Class IsolineCalculationMode
- All Implemented Interfaces:
Serializable,Comparable<IsolineCalculationMode>,Constable
Specifies how isoline calculation is optimized.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionCalculation of isoline takes a balanced approach averaging between quality and performance.Calculation of isoline is performance-centric, quality of isoline is reduced to provide better performance.Calculation of isoline focuses on quality, that is, the graph used for isoline calculation has higher granularity generating an isoline that is more precise. -
Method Summary
Modifier and TypeMethodDescriptionstatic IsolineCalculationModeReturns the enum constant of this class with the specified name.static IsolineCalculationMode[]values()Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
QUALITY
Calculation of isoline focuses on quality, that is, the graph used for isoline calculation has higher granularity generating an isoline that is more precise.
-
PERFORMANCE
Calculation of isoline is performance-centric, quality of isoline is reduced to provide better performance.
-
BALANCED
Calculation of isoline takes a balanced approach averaging between quality and performance.
-
-
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
-