public static enum IScannerDevice.ScanType extends Enum<IScannerDevice.ScanType>
Enum Constant and Description |
---|
HardwareScanner |
MainScanner |
StandardScanner |
Modifier and Type | Method and Description |
---|---|
static IScannerDevice.ScanType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static IScannerDevice.ScanType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final IScannerDevice.ScanType HardwareScanner
public static final IScannerDevice.ScanType MainScanner
public static final IScannerDevice.ScanType StandardScanner
public static IScannerDevice.ScanType 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 IScannerDevice.ScanType[] values()
for (IScannerDevice.ScanType c : IScannerDevice.ScanType.values()) System.out.println(c);