public enum ECallConfirmationStatus extends Enum<ECallConfirmationStatus>
| Enum Constant and Description |
|---|
CALL_CANCELLED
An E-Call was cancelled by the user.
|
CALL_COMPLETE_DTMF_TIMEOUT
E-Call is considered to be complete without Emergency Operator contact.
|
CALL_COMPLETED
The E-Call sequence is completed.
|
CALL_IN_PROGRESS
An E-Call is being in progress.
|
CALL_UNSUCCESSFUL
An E-Call could not be connected.
|
ECALL_CONFIGURED_OFF
E-Call is not configured on this vehicle.
|
NORMAL
No E-Call signal triggered.
|
| Modifier and Type | Method and Description |
|---|---|
static ECallConfirmationStatus |
valueForString(String value) |
static ECallConfirmationStatus |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ECallConfirmationStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ECallConfirmationStatus NORMAL
public static final ECallConfirmationStatus CALL_IN_PROGRESS
public static final ECallConfirmationStatus CALL_CANCELLED
public static final ECallConfirmationStatus CALL_COMPLETED
public static final ECallConfirmationStatus CALL_UNSUCCESSFUL
public static final ECallConfirmationStatus ECALL_CONFIGURED_OFF
public static final ECallConfirmationStatus CALL_COMPLETE_DTMF_TIMEOUT
public static ECallConfirmationStatus[] values()
for (ECallConfirmationStatus c : ECallConfirmationStatus.values()) System.out.println(c);
public static ECallConfirmationStatus 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 nullpublic static ECallConfirmationStatus valueForString(String value)