public enum ZendrivePauseAutoTrackingResult extends Enum<ZendrivePauseAutoTrackingResult>
| Enum Constant and Description | 
|---|
EXPIRED_RESUMPTION_TIME_STAMP
The  
Zendrive.pauseAutoTracking(android.content.Context, java.lang.Long) operation failed because
 the time stamp passed by the user is a past timestamp. | 
SDK_NOT_SETUP
The  
Zendrive.pauseAutoTracking(android.content.Context, java.lang.Long) failed because the SDK is not setup. | 
SUCCESS
The auto trip detection is paused. 
 | 
| Modifier and Type | Method and Description | 
|---|---|
String | 
getMessage()  | 
static ZendrivePauseAutoTrackingResult | 
valueOf(String name)
Returns the enum constant of this type with the specified name. 
 | 
static ZendrivePauseAutoTrackingResult[] | 
values()
Returns an array containing the constants of this enum type, in
the order they are declared. 
 | 
public static final ZendrivePauseAutoTrackingResult SUCCESS
public static final ZendrivePauseAutoTrackingResult SDK_NOT_SETUP
Zendrive.pauseAutoTracking(android.content.Context, java.lang.Long) failed because the SDK is not setup.public static final ZendrivePauseAutoTrackingResult EXPIRED_RESUMPTION_TIME_STAMP
Zendrive.pauseAutoTracking(android.content.Context, java.lang.Long) operation failed because
 the time stamp passed by the user is a past timestamp.public static ZendrivePauseAutoTrackingResult[] values()
for (ZendrivePauseAutoTrackingResult c : ZendrivePauseAutoTrackingResult.values()) System.out.println(c);
public static ZendrivePauseAutoTrackingResult 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()