public static enum ScannerConfig.Inverse1DMode extends java.lang.Enum<ScannerConfig.Inverse1DMode>
Example Usage: Inverse1DMode.DISABLED;
Enum Constant and Description |
---|
AUTO
Allows decoding of both positive as well as inverse 1D symbologies.
|
DISABLED
Disables decoding of inverse 1D symbologies
|
ENABLED
Enables decoding of only inverse 1D symbologies.
|
Modifier and Type | Method and Description |
---|---|
static ScannerConfig.Inverse1DMode |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ScannerConfig.Inverse1DMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ScannerConfig.Inverse1DMode DISABLED
public static final ScannerConfig.Inverse1DMode ENABLED
public static final ScannerConfig.Inverse1DMode AUTO
public static ScannerConfig.Inverse1DMode[] values()
for (ScannerConfig.Inverse1DMode c : ScannerConfig.Inverse1DMode.values()) System.out.println(c);
public static ScannerConfig.Inverse1DMode 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