public enum BarcodeReaderServiceState extends java.lang.Enum<BarcodeReaderServiceState>
Enum Constant and Description |
---|
connected
Connecting state
(Japanese)
接続中状態
|
connecting
Connection start state
(Japanese)
接続開始状態
|
listen
Connection wait state
(Japanese)
接続待ち状態
|
none
no state
(Japanese)
状態なし
|
Modifier and Type | Method and Description |
---|---|
static BarcodeReaderServiceState |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static BarcodeReaderServiceState[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BarcodeReaderServiceState none
public static final BarcodeReaderServiceState listen
public static final BarcodeReaderServiceState connecting
public static final BarcodeReaderServiceState connected
public static BarcodeReaderServiceState[] values()
for (BarcodeReaderServiceState c : BarcodeReaderServiceState.values()) System.out.println(c);
public static BarcodeReaderServiceState 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