public static enum EMDKResults.STATUS_CODE extends java.lang.Enum<EMDKResults.STATUS_CODE>
Example Usage: results.statusCode.SUCCESS;
| Enum Constant and Description | 
|---|
CHECK_XML
This is returned when multiple features are present in the profile. 
 | 
EMDK_NOT_OPENED
EMDK is not opened 
 | 
EMPTY_PROFILENAME
Profile name passed Process profile was empty. 
 | 
FAILURE
Process profile was a failure. 
 | 
FEATURE_NOT_READY_TO_USE
The requested feature is not ready to use. 
 | 
FEATURE_NOT_SUPPORTED
The requested feature is not supported on this device. 
 | 
NO_DATA_LISTENER
The asynchronous method (Ex: processProfileAsync) is issued without adding the data listener. 
 | 
NULL_POINTER
Process profile was a had a null value. 
 | 
PREVIOUS_REQUEST_IN_PROGRESS
The previous request is in progress, wait for it to complete before next request. 
 | 
PROCESSING
The processing of profile started, the result will be returned through the data listener callback registered. 
 | 
SUCCESS
Process profile was a success. 
 | 
UNKNOWN
Process profile had mixed results. 
 | 
| Modifier and Type | Method and Description | 
|---|---|
static EMDKResults.STATUS_CODE | 
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. 
 | 
static EMDKResults.STATUS_CODE[] | 
values()
Returns an array containing the constants of this enum type, in
the order they are declared. 
 | 
public static final EMDKResults.STATUS_CODE SUCCESS
public static final EMDKResults.STATUS_CODE FAILURE
public static final EMDKResults.STATUS_CODE UNKNOWN
public static final EMDKResults.STATUS_CODE NULL_POINTER
public static final EMDKResults.STATUS_CODE EMPTY_PROFILENAME
public static final EMDKResults.STATUS_CODE EMDK_NOT_OPENED
public static final EMDKResults.STATUS_CODE CHECK_XML
public static final EMDKResults.STATUS_CODE PREVIOUS_REQUEST_IN_PROGRESS
public static final EMDKResults.STATUS_CODE PROCESSING
public static final EMDKResults.STATUS_CODE NO_DATA_LISTENER
public static final EMDKResults.STATUS_CODE FEATURE_NOT_READY_TO_USE
public static final EMDKResults.STATUS_CODE FEATURE_NOT_SUPPORTED
public static EMDKResults.STATUS_CODE[] values()
for (EMDKResults.STATUS_CODE c : EMDKResults.STATUS_CODE.values()) System.out.println(c);
public static EMDKResults.STATUS_CODE valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is null