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