public static enum ScannerConfig.VerifyCheckDigit extends Enum<ScannerConfig.VerifyCheckDigit>
Example Usage: VerifyCheckDigit.NO;
Enum Constant and Description |
---|
NO
Do not verify check digit.
|
ONE
Bar code contains one check digit.
|
TWO
Bar code contains two check digits.
|
Modifier and Type | Method and Description |
---|---|
static ScannerConfig.VerifyCheckDigit |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ScannerConfig.VerifyCheckDigit[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ScannerConfig.VerifyCheckDigit NO
public static final ScannerConfig.VerifyCheckDigit ONE
public static final ScannerConfig.VerifyCheckDigit TWO
public static ScannerConfig.VerifyCheckDigit[] values()
for (ScannerConfig.VerifyCheckDigit c : ScannerConfig.VerifyCheckDigit.values()) System.out.println(c);
public static ScannerConfig.VerifyCheckDigit 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