Package glair.vision.enums
Enum Class GestureCode
- All Implemented Interfaces:
Serializable,Comparable<GestureCode>,Constable
Enum representing gesture codes.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionRepresents a hand gesture with code HAND_00000.Represents a hand gesture with code HAND_01000.Represents a hand gesture with code HAND_01100.Represents a hand gesture with code HAND_01110.Represents a hand gesture with code HAND_01111.Represents a hand gesture with code HAND_10000.Represents a hand gesture with code HAND_11000.Represents a hand gesture with code HAND_11001.Represents a hand gesture with code HAND_11111.Represents a hand gesture with code HEAD_00.Represents a hand gesture with code HEAD_01.Represents a hand gesture with code HEAD_10.Represents a hand gesture with code HEAD_11.Represents a hand gesture with code HEAD_CLOSE_MOUTH.Represents a hand gesture with code HEAD_DOWN.Represents a hand gesture with code HEAD_LEFT.Represents a hand gesture with code HEAD_OPEN_MOUTH.Represents a hand gesture with code HEAD_RIGHT.Represents a hand gesture with code HEAD_UP. -
Field Summary
Fields -
Method Summary
Modifier and TypeMethodDescriptionstatic GestureCodeReturns the enum constant of this class with the specified name.static GestureCode[]values()Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
HAND_00000
Represents a hand gesture with code HAND_00000. -
HAND_01000
Represents a hand gesture with code HAND_01000. -
HAND_01100
Represents a hand gesture with code HAND_01100. -
HAND_01110
Represents a hand gesture with code HAND_01110. -
HAND_01111
Represents a hand gesture with code HAND_01111. -
HAND_10000
Represents a hand gesture with code HAND_10000. -
HAND_11000
Represents a hand gesture with code HAND_11000. -
HAND_11001
Represents a hand gesture with code HAND_11001. -
HAND_11111
Represents a hand gesture with code HAND_11111. -
HEAD_00
Represents a hand gesture with code HEAD_00. -
HEAD_01
Represents a hand gesture with code HEAD_01. -
HEAD_10
Represents a hand gesture with code HEAD_10. -
HEAD_11
Represents a hand gesture with code HEAD_11. -
HEAD_LEFT
Represents a hand gesture with code HEAD_LEFT. -
HEAD_OPEN_MOUTH
Represents a hand gesture with code HEAD_OPEN_MOUTH. -
HEAD_RIGHT
Represents a hand gesture with code HEAD_RIGHT. -
HEAD_UP
Represents a hand gesture with code HEAD_UP. -
HEAD_CLOSE_MOUTH
Represents a hand gesture with code HEAD_CLOSE_MOUTH. -
HEAD_DOWN
Represents a hand gesture with code HEAD_DOWN.
-
-
Field Details
-
label
The label associated with the gesture code.
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException- if this enum class has no constant with the specified nameNullPointerException- if the argument is null
-