public enum SeatMemoryActionType extends Enum<SeatMemoryActionType>
| Enum Constant and Description |
|---|
NONE
No action to be performed.
|
RESTORE
Restore / apply the seat memory settings to the current seat.
|
SAVE
Save current seat positions and settings to seat memory.
|
| Modifier and Type | Method and Description |
|---|---|
static SeatMemoryActionType |
valueForString(String value) |
static SeatMemoryActionType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SeatMemoryActionType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SeatMemoryActionType SAVE
public static final SeatMemoryActionType RESTORE
public static final SeatMemoryActionType NONE
public static SeatMemoryActionType[] values()
for (SeatMemoryActionType c : SeatMemoryActionType.values()) System.out.println(c);
public static SeatMemoryActionType 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 SeatMemoryActionType valueForString(String value)