public static enum ScannerConfig.IlluminationMode extends java.lang.Enum<ScannerConfig.IlluminationMode>
Example Usage: IlluminationMode.OFF;
| Enum Constant and Description |
|---|
OFF
Illumination turned off during scanning.
|
ON
Illumination turned on during scanning.
|
| Modifier and Type | Method and Description |
|---|---|
static ScannerConfig.IlluminationMode |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ScannerConfig.IlluminationMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ScannerConfig.IlluminationMode OFF
public static final ScannerConfig.IlluminationMode ON
public static ScannerConfig.IlluminationMode[] values()
for (ScannerConfig.IlluminationMode c : ScannerConfig.IlluminationMode.values()) System.out.println(c);
public static ScannerConfig.IlluminationMode 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