Page Summary
-
TripInfo.TripTypeis an annotation indicating the type of trip, such as exclusive or shared. -
It defines three constants:
EXCLUSIVE,SHARED, andUNKNOWNto represent different trip types. -
EXCLUSIVEsignifies a trip dedicated to a single vehicle, whileSHAREDindicates potential vehicle sharing with other trips. -
UNKNOWNserves as the default for unspecified or unrecognized trip types.
Type of trip.
Constant Summary
| int | EXCLUSIVE | The trip is exclusive to a vehicle. |
| int | SHARED | The trip may share a vehicle with other trips. |
| int | UNKNOWN | Default, used for unspecified or unrecognized trip types. |
Inherited Method Summary
Constants
public static final int EXCLUSIVE
The trip is exclusive to a vehicle.
public static final int SHARED
The trip may share a vehicle with other trips.
public static final int UNKNOWN
Default, used for unspecified or unrecognized trip types.