public static enum ScannerConfig.DpmIlluminationControl extends java.lang.Enum<ScannerConfig.DpmIlluminationControl>
Example Usage: DpmIlluminationControl.CYCLE;
| Enum Constant and Description | 
|---|
CYCLE
Scanner cycles alternately between direct and indirect illumination. 
 | 
DIRECT
Scanner uses only the direct(white) illumination. 
 | 
INDIRECT
Scanner uses only the red illumination. 
 | 
| Modifier and Type | Method and Description | 
|---|---|
static ScannerConfig.DpmIlluminationControl | 
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. 
 | 
static ScannerConfig.DpmIlluminationControl[] | 
values()
Returns an array containing the constants of this enum type, in
the order they are declared. 
 | 
public static final ScannerConfig.DpmIlluminationControl DIRECT
public static final ScannerConfig.DpmIlluminationControl INDIRECT
public static final ScannerConfig.DpmIlluminationControl CYCLE
public static ScannerConfig.DpmIlluminationControl[] values()
for (ScannerConfig.DpmIlluminationControl c : ScannerConfig.DpmIlluminationControl.values()) System.out.println(c);
public static ScannerConfig.DpmIlluminationControl 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