public static enum ScannerConfig.UccLinkMode extends Enum<ScannerConfig.UccLinkMode>
Example Usage: UCCLinkMode.LINK_FLAG_IGNORED;
Enum Constant and Description |
---|
ALWAYS_LINKED
1D and the 2D components are transmitted.
|
AUTO_DISCRIMINATE
the digital scanner determines if there is a 2D portion, then
transmits the 1D component, as well as the 2D portion if present
(default).
|
LINK_FLAG_IGNORED
1D component is transmitted regardless of whether a 2D component is
detected.
|
Modifier and Type | Method and Description |
---|---|
static ScannerConfig.UccLinkMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ScannerConfig.UccLinkMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ScannerConfig.UccLinkMode LINK_FLAG_IGNORED
public static final ScannerConfig.UccLinkMode ALWAYS_LINKED
public static final ScannerConfig.UccLinkMode AUTO_DISCRIMINATE
public static ScannerConfig.UccLinkMode[] values()
for (ScannerConfig.UccLinkMode c : ScannerConfig.UccLinkMode.values()) System.out.println(c);
public static ScannerConfig.UccLinkMode 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