public enum MassageZone extends Enum<MassageZone>
| Enum Constant and Description |
|---|
LUMBAR
The back of a multi-contour massage seat.
|
SEAT_CUSHION
The bottom a multi-contour massage seat.
|
| Modifier and Type | Method and Description |
|---|---|
static MassageZone |
valueForString(String value) |
static MassageZone |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static MassageZone[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MassageZone LUMBAR
public static final MassageZone SEAT_CUSHION
public static MassageZone[] values()
for (MassageZone c : MassageZone.values()) System.out.println(c);
public static MassageZone 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 MassageZone valueForString(String value)