public enum ScannerType extends java.lang.Enum<ScannerType>
| Enum Constant and Description |
|---|
BLUETOOTH_SCANNER
Bluetooth接続されるOPNシリーズ等の無線スキャナ Wireless scanners such as OPN series connected via Bluetooth |
SOFTWARE_SCANNER
Android端末(H-35等)組み込みスキャナ Android device (H-35, etc.)embedded scanner |
USB_SCANNER
USB-COM接続される有線タイプのスキャナ Wired type scanner connected via USB-COM |
| Modifier and Type | Method and Description |
|---|---|
static ScannerType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ScannerType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ScannerType SOFTWARE_SCANNER
public static final ScannerType BLUETOOTH_SCANNER
public static final ScannerType USB_SCANNER
public static ScannerType[] values()
for (ScannerType c : ScannerType.values()) System.out.println(c);
public static ScannerType 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