public enum PRNDL extends Enum<PRNDL>
| Enum Constant and Description |
|---|
DRIVE
Regular Drive mode
|
EIGHTH |
FAULT |
FIFTH
Fifth gear
|
FIRST
First gear
|
FOURTH
Fourth gear
|
LOWGEAR
1st gear hold
|
NEUTRAL
No gear
|
NINTH |
PARK
Parking
|
REVERSE
Reverse gear
|
SECOND
Second gear
|
SEVENTH |
SIXTH
Sixth gear
|
SPORT
Drive Sport mode
|
TENTH |
THIRD
Third gear
|
UNKNOWN |
| Modifier and Type | Method and Description |
|---|---|
static PRNDL |
valueForString(String value)
Convert String to PRNDL
|
static PRNDL |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static PRNDL[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PRNDL PARK
public static final PRNDL REVERSE
public static final PRNDL NEUTRAL
public static final PRNDL DRIVE
public static final PRNDL SPORT
public static final PRNDL LOWGEAR
public static final PRNDL FIRST
public static final PRNDL SECOND
public static final PRNDL THIRD
public static final PRNDL FOURTH
public static final PRNDL FIFTH
public static final PRNDL SIXTH
public static final PRNDL SEVENTH
public static final PRNDL EIGHTH
public static final PRNDL NINTH
public static final PRNDL TENTH
public static final PRNDL UNKNOWN
public static final PRNDL FAULT
public static PRNDL[] values()
for (PRNDL c : PRNDL.values()) System.out.println(c);
public static PRNDL 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