public enum InstantTrackingState extends Enum<InstantTrackingState>
Enum Constant and Description |
---|
Initializing
When the InstantTracker is running in Initializing mode, the position and
orientation of the tracking plane origin can be set.
|
Tracking
When the InstantTracker is switched to Tracking mode, it starts tracking the scene
with the settings configured during the Initialization mode.
|
Modifier and Type | Method and Description |
---|---|
int |
getValue() |
static InstantTrackingState |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static InstantTrackingState[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final InstantTrackingState Initializing
public static final InstantTrackingState Tracking
public static InstantTrackingState[] values()
for (InstantTrackingState c : InstantTrackingState.values()) System.out.println(c);
public static InstantTrackingState 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 nullpublic int getValue()