public enum PowerModeStatus extends Enum<PowerModeStatus>
| Enum Constant and Description |
|---|
ACCESORY_1
Key is in accessory position
|
CRANK_3
Key is in crank position
|
IGNITION_ON_2
Key is in position ignition on
|
KEY_APPROVED_0 |
KEY_OUT
Key not inserted
|
KEY_RECENTLY_OUT
Key is currently out
|
POST_ACCESORY_0 |
POST_IGNITION_1 |
RUNNING_2
Key is in position running
|
| Modifier and Type | Method and Description |
|---|---|
static PowerModeStatus |
valueForString(String value) |
static PowerModeStatus |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static PowerModeStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PowerModeStatus KEY_OUT
public static final PowerModeStatus KEY_RECENTLY_OUT
public static final PowerModeStatus KEY_APPROVED_0
public static final PowerModeStatus POST_ACCESORY_0
public static final PowerModeStatus ACCESORY_1
public static final PowerModeStatus POST_IGNITION_1
public static final PowerModeStatus IGNITION_ON_2
public static final PowerModeStatus RUNNING_2
public static final PowerModeStatus CRANK_3
public static PowerModeStatus[] values()
for (PowerModeStatus c : PowerModeStatus.values()) System.out.println(c);
public static PowerModeStatus 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 PowerModeStatus valueForString(String value)