TransportMode (API Reference)
Enum Class TransportMode
- All Implemented Interfaces:
Serializable,Comparable<TransportMode>,Constable
Specifies the mode of transport used for route calculalation.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionRoute calculation for bicycles.Route calculation for buses.The calculated route is optimized for cars.The calculated route is optimized for pedestrians.Route calculation for private buses.The calculated route is optimized for public transit.The calculated route is optimized for scooters.The taxi transport mode takes into account tax restricted streets as well as streets reserved for exclusive taxi access.The calculated route is optimized for trucks. -
Method Summary
Modifier and TypeMethodDescriptionstatic TransportModeReturns the enum constant of this class with the specified name.static TransportMode[]values()Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
CAR
The calculated route is optimized for cars.
-
TRUCK
The calculated route is optimized for trucks. This mode considers truck restrictions and uses truck specific speed assumptions when calculating the route.
-
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
The calculated route is optimized for scooters.
-
BICYCLE
Route calculation for bicycles.
-
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
SDKBuildInformationand consult your HERE representative if necessary. -
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
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
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
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
-