public enum SimulScanResults extends Enum<SimulScanResults>
Enum Constant and Description |
---|
ALREADY_SCANNING
A scan operation is already in progress.
|
ALREADY_STOPPED_SCANNING
The reader has already stopped scanning
|
EMDK_NOT_OPENED
EMDK is not opened
|
FAILED_TO_LOAD_TEMPLATE
Failed to load template
|
FAILED_TO_SET_TEMPLATE
Failed to set template
|
FAILURE
Failure
|
FEATURE_NOT_SUPPORTED
The feature is not supported completely or for specified input.
|
FETCH_TEMPLATE_IN_PROGRESS
Fetch template is in progress
|
FETCH_TEMPLATE_NOT_ALLOWED
Fetch template not allowed while a read is in progress
|
INVALID_OBJECT
The reader has been released and is not valid.
|
INVALID_VALUE
The value passed is not valid.
|
NO_DATA_LISTENER
Data listner is not set
|
READER_ALREADY_DISABLED
The reader is already disabled
|
READER_ALREADY_ENABLED
Reader is already enabled
|
READER_DEINIT_FAILED
Reader de-initialization failed.
|
READER_IN_USE
Another reader is already enabled and in use.
|
READER_INIT_FAILED
Reader initialization failed.
|
READER_NOT_ENABLED
The selected reader is not enabled.
|
SUCCESS
Success.
|
TEMPLATE_NOT_SET
Failed to set template
|
UNDEFINED
Undefined
|
Modifier and Type | Method and Description |
---|---|
String |
getDescription()
Returns the description for the error.
|
int |
getValue()
Get the error code integer value assigned to the SimulScanResults
|
static SimulScanResults |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SimulScanResults[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SimulScanResults SUCCESS
public static final SimulScanResults ALREADY_SCANNING
public static final SimulScanResults ALREADY_STOPPED_SCANNING
public static final SimulScanResults READER_ALREADY_ENABLED
public static final SimulScanResults READER_IN_USE
public static final SimulScanResults READER_ALREADY_DISABLED
public static final SimulScanResults FEATURE_NOT_SUPPORTED
public static final SimulScanResults READER_NOT_ENABLED
public static final SimulScanResults INVALID_OBJECT
public static final SimulScanResults FAILED_TO_LOAD_TEMPLATE
public static final SimulScanResults FAILED_TO_SET_TEMPLATE
public static final SimulScanResults TEMPLATE_NOT_SET
public static final SimulScanResults INVALID_VALUE
public static final SimulScanResults NO_DATA_LISTENER
public static final SimulScanResults EMDK_NOT_OPENED
public static final SimulScanResults READER_INIT_FAILED
public static final SimulScanResults READER_DEINIT_FAILED
public static final SimulScanResults FETCH_TEMPLATE_NOT_ALLOWED
public static final SimulScanResults FETCH_TEMPLATE_IN_PROGRESS
public static final SimulScanResults UNDEFINED
public static final SimulScanResults FAILURE
public static SimulScanResults[] values()
for (SimulScanResults c : SimulScanResults.values()) System.out.println(c);
public static SimulScanResults 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()
public String getDescription()