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