Enum Class TransportMode

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

public enum TransportMode extends Enum<TransportMode>

Specifies the mode of transport used for route calculalation.

  • Enum Constant Details

    • CAR

      public static final TransportMode CAR

      The calculated route is optimized for cars.

    • TRUCK

      public static final TransportMode TRUCK

      The calculated route is optimized for trucks. This mode considers truck restrictions and uses truck specific speed assumptions when calculating the route.

    • PEDESTRIAN

      public static final TransportMode PEDESTRIAN

      The calculated route is optimized for pedestrians. As one effect, maneuvers will be optimized for walking, i.e. segments will consider actions relevant for pedestrians and maneuver instructions will contain texts suitable for a walking person. This mode disregards any traffic information.

    • SCOOTER

      public static final TransportMode SCOOTER

      The calculated route is optimized for scooters.

    • BICYCLE

      public static final TransportMode BICYCLE

      Route calculation for bicycles.

    • PUBLIC_TRANSIT

      public static final TransportMode PUBLIC_TRANSIT

      The calculated route is optimized for public transit. Note that this transport mode is available only for some versions of the HERE SDK. Check SDKBuildInformation and consult your HERE representative if necessary.

    • TAXI

      public static final TransportMode TAXI

      The taxi transport mode takes into account tax restricted streets as well as streets reserved for exclusive taxi access. Note that roads that are restricted or reserved for taxis are avoided, unless a waypoint is set on such a road - as this may indicate to pick-up or to drop-off a passenger.

      Note: This is a beta release of this transport mode, so there could be a few bugs and unexpected behaviors. Related APIs may change for new releases or even become unsupported, without a deprecation process.

    • BUS

      public static final TransportMode BUS

      Route calculation for buses. Denotes those vehicles operated by public transport provider. This transport mode has the access to the bus-only lane/road.

    • PRIVATE_BUS

      public static final TransportMode PRIVATE_BUS

      Route calculation for private buses. Denotes those vehicles operated by private transport company. This transport mode does not have the access to the bus-only lane/road.

  • Method Details

    • values

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