public enum TBTState extends Enum<TBTState>
| Enum Constant and Description |
|---|
ETA_REQUEST
Request from HMI for Estimated time of arrival.
|
NEXT_TURN_REQUEST
Request from HMI for the information of the next turn.
|
ROUTE_ACCEPTED
Confirmation from HMI about accepting the route.
|
ROUTE_CANCELLED
Information from HMI about canceling the route.
|
ROUTE_REFUSED
Information from HMI about the route refusal.
|
ROUTE_STATUS_REQUEST
Request from HMI for the route status.
|
ROUTE_SUMMARY_REQUEST
Request from HMI for the route summary.
|
ROUTE_UPDATE_REQUEST
Indicates that driver requested a route update.
|
ROUTE_UPDATE_REQUEST_TIMEOUT
Request from HMI for the timeout for waiting for the route updating.
|
TRIP_STATUS_REQUEST
Request from HMI for the information about trip status.
|
| Modifier and Type | Method and Description |
|---|---|
static TBTState |
valueForString(String value)
Convert String to TBTState
|
static TBTState |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TBTState[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TBTState ROUTE_UPDATE_REQUEST
public static final TBTState ROUTE_ACCEPTED
public static final TBTState ROUTE_REFUSED
public static final TBTState ROUTE_CANCELLED
public static final TBTState ETA_REQUEST
public static final TBTState NEXT_TURN_REQUEST
public static final TBTState ROUTE_STATUS_REQUEST
public static final TBTState ROUTE_SUMMARY_REQUEST
public static final TBTState TRIP_STATUS_REQUEST
public static final TBTState ROUTE_UPDATE_REQUEST_TIMEOUT
public static TBTState[] values()
for (TBTState c : TBTState.values()) System.out.println(c);
public static TBTState valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is null