public static enum ScannerConfig.LcdMode extends java.lang.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(java.lang.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(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