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