Enum TriggerType

  • All Implemented Interfaces:
    java.io.Serializable, java.lang.Comparable<TriggerType>

    public enum TriggerType
    extends java.lang.Enum<TriggerType>
    • Enum Constant Detail

      • LEFT_EYE_STATUS

        public static final TriggerType LEFT_EYE_STATUS
      • RIGHT_EYE_STATUS

        public static final TriggerType RIGHT_EYE_STATUS
      • SMILE_STATUS

        public static final TriggerType SMILE_STATUS
      • MOUTH_STATUS

        public static final TriggerType MOUTH_STATUS
      • BROWS_RAISED_STATUS

        public static final TriggerType BROWS_RAISED_STATUS
      • BROWS_SHIFTED_STATUS

        public static final TriggerType BROWS_SHIFTED_STATUS
      • GLASSES_STATUS

        public static final TriggerType GLASSES_STATUS
    • Method Detail

      • values

        public static TriggerType[] values()
        Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
        for (TriggerType c : TriggerType.values())
            System.out.println(c);
        
        Returns:
        an array containing the constants of this enum type, in the order they are declared
      • valueOf

        public static TriggerType valueOf​(java.lang.String name)
        Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (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:
        java.lang.IllegalArgumentException - if this enum type has no constant with the specified name
        java.lang.NullPointerException - if the argument is null