@Deprecated public static enum ProfileConfig.ISBT128_CONTACT_MODE extends java.lang.Enum<ProfileConfig.ISBT128_CONTACT_MODE>
Example Usage: ISBT128_CONTACT_MODE.DEFAULT;
| Enum Constant and Description | 
|---|
ALWAYS
Deprecated.  
Will not decode if both the barcodes are not present or if one of them cannot be decoded. 
 | 
AUTO
Deprecated.  
Decodes and concatenates pairs of ISBT codes immediately. 
 | 
DEFAULT
Deprecated.  
Default ISBT128 concatenation configured on device 
 | 
NEVER
Deprecated.  
Will ignore the barcode pair and only output decode data for only one of the barcodes 
 | 
| Modifier and Type | Method and Description | 
|---|---|
static ProfileConfig.ISBT128_CONTACT_MODE | 
valueOf(java.lang.String name)
Deprecated.  
Returns the enum constant of this type with the specified name. 
 | 
static ProfileConfig.ISBT128_CONTACT_MODE[] | 
values()
Deprecated.  
Returns an array containing the constants of this enum type, in
the order they are declared. 
 | 
public static final ProfileConfig.ISBT128_CONTACT_MODE DEFAULT
public static final ProfileConfig.ISBT128_CONTACT_MODE NEVER
public static final ProfileConfig.ISBT128_CONTACT_MODE ALWAYS
public static final ProfileConfig.ISBT128_CONTACT_MODE AUTO
public static ProfileConfig.ISBT128_CONTACT_MODE[] values()
for (ProfileConfig.ISBT128_CONTACT_MODE c : ProfileConfig.ISBT128_CONTACT_MODE.values()) System.out.println(c);
public static ProfileConfig.ISBT128_CONTACT_MODE 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