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