Package step.repository.alm.otaclient
Enum TDAPI_BASELINE_CAPTURING_STATE
- java.lang.Object
-
- java.lang.Enum<TDAPI_BASELINE_CAPTURING_STATE>
-
- step.repository.alm.otaclient.TDAPI_BASELINE_CAPTURING_STATE
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<TDAPI_BASELINE_CAPTURING_STATE>
public enum TDAPI_BASELINE_CAPTURING_STATE extends java.lang.Enum<TDAPI_BASELINE_CAPTURING_STATE>
Baseline capture states
-
-
Enum Constant Summary
Enum Constants Enum Constant Description BASELINE_CAPTURING_STATE_COMPLETE
BASELINE_CAPTURING_STATE_COMPLETE (Baseline capture succeeded)BASELINE_CAPTURING_STATE_FAIL
BASELINE_CAPTURING_STATE_FAIL (Baseline capture failed)BASELINE_CAPTURING_STATE_IN_PROGRESS
BASELINE_CAPTURING_STATE_IN_PROGRESS (Baseline capture in progress)BASELINE_CAPTURING_STATE_NONE
BASELINE_CAPTURING_STATE_NONE (Baseline not captured)
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static TDAPI_BASELINE_CAPTURING_STATE
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static TDAPI_BASELINE_CAPTURING_STATE[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
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 namejava.lang.NullPointerException
- if the argument is null
-
-