public static enum ScannerConfig.Isbt128ContactMode extends Enum<ScannerConfig.Isbt128ContactMode>
Example Usage: Isbt128ContactMode.NEVER;
Enum Constant and Description |
---|
ALWAYS
Will not decode if both the barcodes are not present or if one of
them cannot be decoded.
|
AUTO
Decodes and concatenates pairs of ISBT codes immediately.
|
NEVER
Will ignore the barcode pair and only output decode data for only one
of the barcodes
|
Modifier and Type | Method and Description |
---|---|
static ScannerConfig.Isbt128ContactMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ScannerConfig.Isbt128ContactMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ScannerConfig.Isbt128ContactMode NEVER
public static final ScannerConfig.Isbt128ContactMode ALWAYS
public static final ScannerConfig.Isbt128ContactMode AUTO
public static ScannerConfig.Isbt128ContactMode[] values()
for (ScannerConfig.Isbt128ContactMode c : ScannerConfig.Isbt128ContactMode.values()) System.out.println(c);
public static ScannerConfig.Isbt128ContactMode 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