public static enum ScannerInfo.DecoderType extends java.lang.Enum<ScannerInfo.DecoderType>
Example Usage: DecoderType.ONE_DIMENSIONAL
| Enum Constant and Description |
|---|
ONE_DIMENSIONAL
Barcode scanning is 1-D only.
|
TWO_DIMENSIONAL
Barcode scanning is 2-D.
|
UNDEFINED
Decoder type not defined.
|
| Modifier and Type | Method and Description |
|---|---|
static ScannerInfo.DecoderType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ScannerInfo.DecoderType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ScannerInfo.DecoderType ONE_DIMENSIONAL
public static final ScannerInfo.DecoderType TWO_DIMENSIONAL
public static final ScannerInfo.DecoderType UNDEFINED
public static ScannerInfo.DecoderType[] values()
for (ScannerInfo.DecoderType c : ScannerInfo.DecoderType.values()) System.out.println(c);
public static ScannerInfo.DecoderType 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