public enum OperatingMode extends Enum<OperatingMode>
Enum Constant and Description |
---|
Memory
When the 1800 device operates in memory mode, it is operating without connecting to any data receiver.
|
Online
When the 1800 device operates in online mode, it is connected to a terminal device or a computer that receives scanned data through Bluetooth® connection.
|
Modifier and Type | Method and Description |
---|---|
static OperatingMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static OperatingMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final OperatingMode Online
public static final OperatingMode Memory
public static OperatingMode[] values()
for (OperatingMode c : OperatingMode.values()) System.out.println(c);
public static OperatingMode 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 null