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