TransportMode

Represents values describing different transport modes, the mode of transportation a person will be using to travel a route (e.g. a car).

Functions

Link copied to clipboard
abstract fun annotationType(): Class<out Annotation>
Link copied to clipboard
abstract fun equals(p: Any): Boolean
Link copied to clipboard
abstract fun hashCode(): Int
Link copied to clipboard
abstract fun toString(): String

Properties

Link copied to clipboard
val Bus: Int = 3
A bus is set as the transport mode.
Link copied to clipboard
val Camper: Int = 6
A camper is set as the transport mode.
Link copied to clipboard
val Car: Int = 2
A car is set as the transport mode.
Link copied to clipboard
A delivery truck is set as the transport mode.
Link copied to clipboard
val GarbageTruck: Int = 7
A garbage truck is set as the transport mode.
Link copied to clipboard
val Motorcycle: Int = 8
A motorcycle is set as the transport mode.
Link copied to clipboard
val Pedestrian: Int = 1
Walking is set as the transport mode.
Link copied to clipboard
A TransportTruck is set as the transport mode.
Link copied to clipboard
val Unknown: Int = 0
Unknown transport mode.