Enum Constant and Description |
---|
BODY_SCAN |
CONSCIOUS_OBSERVATION |
LECTURE_BEHAVIOR_TOWARDS_OTHERS |
MINDFUL_BREATHING |
MINDFUL_EATING |
MINDFUL_MOVEMENT |
MINDFULNESS_MEDITATION |
MINDUFL_MANTRAS |
SITTING_MEDITATION |
WALKING_MEDITATION |
Modifier and Type | Method and Description |
---|---|
static Practice |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Practice[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Practice CONSCIOUS_OBSERVATION
public static final Practice MINDFUL_MOVEMENT
public static final Practice SITTING_MEDITATION
public static final Practice WALKING_MEDITATION
public static final Practice MINDFUL_BREATHING
public static final Practice BODY_SCAN
public static final Practice MINDFUL_EATING
public static final Practice MINDUFL_MANTRAS
public static final Practice LECTURE_BEHAVIOR_TOWARDS_OTHERS
public static final Practice MINDFULNESS_MEDITATION
public static Practice[] values()
for (Practice c : Practice.values()) System.out.println(c);
public static Practice valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant
with the specified namejava.lang.NullPointerException
- if the argument is null