public static enum ScannerConfig.LcdMode extends Enum<ScannerConfig.LcdMode>
Example Usage: LCDMode.DISABLED;
Enum Constant and Description |
---|
DISABLED
Disables LCD mode
|
ENABLED
Enables LCD mode.
|
Modifier and Type | Method and Description |
---|---|
static ScannerConfig.LcdMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ScannerConfig.LcdMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ScannerConfig.LcdMode DISABLED
public static final ScannerConfig.LcdMode ENABLED
public static ScannerConfig.LcdMode[] values()
for (ScannerConfig.LcdMode c : ScannerConfig.LcdMode.values()) System.out.println(c);
public static ScannerConfig.LcdMode 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