public enum TDAPI_BASELINE_CAPTURING_STATE extends Enum<TDAPI_BASELINE_CAPTURING_STATE>
Baseline capture states
Enum Constant and 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)
|
Modifier and Type | Method and Description |
---|---|
static TDAPI_BASELINE_CAPTURING_STATE |
valueOf(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.
|
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
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
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
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
public static TDAPI_BASELINE_CAPTURING_STATE[] values()
for (TDAPI_BASELINE_CAPTURING_STATE c : TDAPI_BASELINE_CAPTURING_STATE.values()) System.out.println(c);
public static TDAPI_BASELINE_CAPTURING_STATE valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullCopyright © 2020. All rights reserved.