Trip.TripType

  • Trip.TripType is deprecated and will be removed; use TripInfo.TripType instead.

  • It defines the type of trip, whether it's exclusive to a vehicle, shared, or unknown.

  • Includes constants for EXCLUSIVE, SHARED, and UNKNOWN trip types.

public static abstract @interface Trip.TripType implements Annotation

This @interface is deprecated.
Use TripInfo.TripType instead. This class will be removed in the next major release.

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