@Deprecated public enum SupportedSeat extends Enum<SupportedSeat>
| Enum Constant and Description |
|---|
DRIVER
Deprecated.
|
FRONT_PASSENGER
Deprecated.
|
| Modifier and Type | Method and Description |
|---|---|
static SupportedSeat |
valueForString(String value)
Deprecated.
|
static SupportedSeat |
valueOf(String name)
Deprecated.
Returns the enum constant of this type with the specified name.
|
static SupportedSeat[] |
values()
Deprecated.
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SupportedSeat DRIVER
public static final SupportedSeat FRONT_PASSENGER
public static SupportedSeat[] values()
for (SupportedSeat c : SupportedSeat.values()) System.out.println(c);
public static SupportedSeat 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 SupportedSeat valueForString(String value)