Enum Class GestureCode

java.lang.Object
java.lang.Enum<GestureCode>
glair.vision.enums.GestureCode
All Implemented Interfaces:
Serializable, Comparable<GestureCode>, Constable

public enum GestureCode extends Enum<GestureCode>
Enum representing gesture codes.
  • Enum Constant Details

    • HAND_00000

      public static final GestureCode HAND_00000
      Represents a hand gesture with code HAND_00000.
    • HAND_01000

      public static final GestureCode HAND_01000
      Represents a hand gesture with code HAND_01000.
    • HAND_01100

      public static final GestureCode HAND_01100
      Represents a hand gesture with code HAND_01100.
    • HAND_01110

      public static final GestureCode HAND_01110
      Represents a hand gesture with code HAND_01110.
    • HAND_01111

      public static final GestureCode HAND_01111
      Represents a hand gesture with code HAND_01111.
    • HAND_10000

      public static final GestureCode HAND_10000
      Represents a hand gesture with code HAND_10000.
    • HAND_11000

      public static final GestureCode HAND_11000
      Represents a hand gesture with code HAND_11000.
    • HAND_11001

      public static final GestureCode HAND_11001
      Represents a hand gesture with code HAND_11001.
    • HAND_11111

      public static final GestureCode HAND_11111
      Represents a hand gesture with code HAND_11111.
    • HEAD_00

      public static final GestureCode HEAD_00
      Represents a hand gesture with code HEAD_00.
    • HEAD_01

      public static final GestureCode HEAD_01
      Represents a hand gesture with code HEAD_01.
    • HEAD_10

      public static final GestureCode HEAD_10
      Represents a hand gesture with code HEAD_10.
    • HEAD_11

      public static final GestureCode HEAD_11
      Represents a hand gesture with code HEAD_11.
    • HEAD_LEFT

      public static final GestureCode HEAD_LEFT
      Represents a hand gesture with code HEAD_LEFT.
    • HEAD_OPEN_MOUTH

      public static final GestureCode HEAD_OPEN_MOUTH
      Represents a hand gesture with code HEAD_OPEN_MOUTH.
    • HEAD_RIGHT

      public static final GestureCode HEAD_RIGHT
      Represents a hand gesture with code HEAD_RIGHT.
    • HEAD_UP

      public static final GestureCode HEAD_UP
      Represents a hand gesture with code HEAD_UP.
    • HEAD_CLOSE_MOUTH

      public static final GestureCode HEAD_CLOSE_MOUTH
      Represents a hand gesture with code HEAD_CLOSE_MOUTH.
    • HEAD_DOWN

      public static final GestureCode HEAD_DOWN
      Represents a hand gesture with code HEAD_DOWN.
  • Field Details

    • label

      public final String label
      The label associated with the gesture code.
  • Method Details

    • values

      public static GestureCode[] 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

      public static GestureCode valueOf(String name)
      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 name
      NullPointerException - if the argument is null