public enum ZendriveResumeAutoTrackingResult extends Enum<ZendriveResumeAutoTrackingResult>
Enum Constant and Description |
---|
SDK_NOT_SETUP
The
Zendrive.resumeAutoTracking(android.content.Context) failed because the SDK is not setup. |
SUCCESS
The auto trip detection is resumed.
|
Modifier and Type | Method and Description |
---|---|
String |
getMessage() |
static ZendriveResumeAutoTrackingResult |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ZendriveResumeAutoTrackingResult[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ZendriveResumeAutoTrackingResult SUCCESS
public static final ZendriveResumeAutoTrackingResult SDK_NOT_SETUP
Zendrive.resumeAutoTracking(android.content.Context)
failed because the SDK is not setup.public static ZendriveResumeAutoTrackingResult[] values()
for (ZendriveResumeAutoTrackingResult c : ZendriveResumeAutoTrackingResult.values()) System.out.println(c);
public static ZendriveResumeAutoTrackingResult 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 String getMessage()