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