public static enum ScannerConfig.LinearSecurityLevel extends Enum<ScannerConfig.LinearSecurityLevel>
Example Usage: LinearSecurityLevel.SHORT_OR_CODABAR;
Enum Constant and Description |
---|
ALL_THRICE
Three times read redundancy for all barcodes.
|
ALL_TWICE
Two times read redundancy for all barcodes (default).
|
LONG_AND_SHORT
Two times read redundancy for long barcodes, three times for short
barcodes.
|
SHORT_OR_CODABAR
Two times read redundancy if short barcode or Codabar.
|
Modifier and Type | Method and Description |
---|---|
static ScannerConfig.LinearSecurityLevel |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ScannerConfig.LinearSecurityLevel[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ScannerConfig.LinearSecurityLevel SHORT_OR_CODABAR
public static final ScannerConfig.LinearSecurityLevel ALL_TWICE
public static final ScannerConfig.LinearSecurityLevel LONG_AND_SHORT
public static final ScannerConfig.LinearSecurityLevel ALL_THRICE
public static ScannerConfig.LinearSecurityLevel[] values()
for (ScannerConfig.LinearSecurityLevel c : ScannerConfig.LinearSecurityLevel.values()) System.out.println(c);
public static ScannerConfig.LinearSecurityLevel 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