Enum Class IsolineCalculationMode

java.lang.Object
java.lang.Enum<IsolineCalculationMode>
com.here.sdk.routing.IsolineCalculationMode
All Implemented Interfaces:
Serializable, Comparable<IsolineCalculationMode>, Constable

public enum IsolineCalculationMode extends Enum<IsolineCalculationMode>

Specifies how isoline calculation is optimized.

  • Enum Constant Details

    • QUALITY

      public static final IsolineCalculationMode 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

      public static final IsolineCalculationMode PERFORMANCE

      Calculation of isoline is performance-centric, quality of isoline is reduced to provide better performance.

    • BALANCED

      public static final IsolineCalculationMode BALANCED

      Calculation of isoline takes a balanced approach averaging between quality and performance.

  • Method Details

    • values

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