public enum ProcessingStatus extends Enum<ProcessingStatus>
| Enum Constant and Description | 
|---|
| BLOCKEDThe processing has stopped because of a quality event. | 
| COMPLETEDThe process is complete an the data can be sent to the server. | 
| IN_PROGRESSThe process is ongoing. | 
| UNSUPPORTEDThe scan comes from an authentication-unsupported phone. | 
| Modifier and Type | Method and Description | 
|---|---|
| int | getValue() | 
| static ProcessingStatus | valueOf(int scanAuthReportType) | 
| static ProcessingStatus | valueOf(String name)Returns the enum constant of this type with the specified name. | 
| static ProcessingStatus[] | values()Returns an array containing the constants of this enum type, in
the order they are declared. | 
public static final ProcessingStatus COMPLETED
public static final ProcessingStatus IN_PROGRESS
public static final ProcessingStatus UNSUPPORTED
public static final ProcessingStatus BLOCKED
public static ProcessingStatus[] values()
for (ProcessingStatus c : ProcessingStatus.values()) System.out.println(c);
public static ProcessingStatus 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 static ProcessingStatus valueOf(int scanAuthReportType)
public int getValue()