Enum TDAPI_BASELINE_CAPTURING_STATE

    • Enum Constant Detail

      • BASELINE_CAPTURING_STATE_NONE

        public static final TDAPI_BASELINE_CAPTURING_STATE BASELINE_CAPTURING_STATE_NONE

        BASELINE_CAPTURING_STATE_NONE (Baseline not captured)

        The value of this constant is 0

      • BASELINE_CAPTURING_STATE_IN_PROGRESS

        public static final TDAPI_BASELINE_CAPTURING_STATE BASELINE_CAPTURING_STATE_IN_PROGRESS

        BASELINE_CAPTURING_STATE_IN_PROGRESS (Baseline capture in progress)

        The value of this constant is 1

      • BASELINE_CAPTURING_STATE_FAIL

        public static final TDAPI_BASELINE_CAPTURING_STATE BASELINE_CAPTURING_STATE_FAIL

        BASELINE_CAPTURING_STATE_FAIL (Baseline capture failed)

        The value of this constant is 2

      • BASELINE_CAPTURING_STATE_COMPLETE

        public static final TDAPI_BASELINE_CAPTURING_STATE BASELINE_CAPTURING_STATE_COMPLETE

        BASELINE_CAPTURING_STATE_COMPLETE (Baseline capture succeeded)

        The value of this constant is 3

    • Method Detail

      • values

        public static TDAPI_BASELINE_CAPTURING_STATE[] 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 (TDAPI_BASELINE_CAPTURING_STATE c : TDAPI_BASELINE_CAPTURING_STATE.values())
            System.out.println(c);
        
        Returns:
        an array containing the constants of this enum type, in the order they are declared
      • valueOf

        public static TDAPI_BASELINE_CAPTURING_STATE 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