public enum MuseGesture extends java.lang.Enum<MuseGesture>
MuseGesture
enum is used to define the various different
Muse gestures that can be analyzed.Enum Constant and Description |
---|
BLINK
When the user blinks.
|
CONCENTRATION_0
When the user's concentration is very low.
|
CONCENTRATION_1
When the user's concentration is low.
|
CONCENTRATION_2
When the user's concentration is medium.
|
CONCENTRATION_3
When the user's concentration is high.
|
JAW_CLENCH
When the user clenches their jaw.
|
Modifier and Type | Method and Description |
---|---|
static MuseGesture |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static MuseGesture[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MuseGesture BLINK
public static final MuseGesture JAW_CLENCH
public static final MuseGesture CONCENTRATION_0
public static final MuseGesture CONCENTRATION_1
public static final MuseGesture CONCENTRATION_2
public static final MuseGesture CONCENTRATION_3
public static MuseGesture[] values()
for (MuseGesture c : MuseGesture.values()) System.out.println(c);
public static MuseGesture 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