TripInfo.TripType

  • TripInfo.TripType is an annotation indicating the type of trip, such as exclusive or shared.

  • It defines three constants: EXCLUSIVE, SHARED, and UNKNOWN to represent different trip types.

  • EXCLUSIVE signifies a trip dedicated to a single vehicle, while SHARED indicates potential vehicle sharing with other trips.

  • UNKNOWN serves as the default for unspecified or unrecognized trip types.

public static abstract @interface TripInfo.TripType implements Annotation

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.

Constant Value: 2

public static final int SHARED

The trip may share a vehicle with other trips.

Constant Value: 1

public static final int UNKNOWN

Default, used for unspecified or unrecognized trip types.

Constant Value: 0