@Deprecated public static enum ProfileConfig.SUPPLEMENTAL_MODE extends java.lang.Enum<ProfileConfig.SUPPLEMENTAL_MODE>
Example Usage: SUPPLEMENTAL_MODE.DEFAULT;
| Enum Constant and Description | 
|---|
ALWAYS
Deprecated.  
The scanner only decodes UPC/EAN symbols with supplemental characters, and ignores symbols without supplementals. 
 | 
AUTO
Deprecated.  
The scanner decodes UPC/EAN symbols with supplemental characters immediately . 
 | 
DEFAULT
Deprecated.  
Default supplemental mode configured on device 
 | 
NO
Deprecated.  
The scanner is presented with a UPC/EAN plus supplemental symbol, the scanner decodes UPC/EAN and ignores the supplemental characters. 
 | 
S_378_379
Deprecated.  
Enables (auto-discriminate) supplemental for UPC/EAN codes starting with 378 or 379. 
 | 
S_414_419_434_439
Deprecated.  
Enables (auto-discriminate) supplemental for UPC/EAN codes starting with 414, 419, 434 or 439. 
 | 
S_977
Deprecated.  
Enables (auto-discriminate) supplemental for UPC/EAN codes starting with 977. 
 | 
S_978_979
Deprecated.  
Enables (auto-discriminate) supplemental for UPC/EAN codes starting with 978 or 979. 
 | 
SMART
Deprecated.  
Enables smart supplementals. 
 | 
| Modifier and Type | Method and Description | 
|---|---|
static ProfileConfig.SUPPLEMENTAL_MODE | 
valueOf(java.lang.String name)
Deprecated.  
Returns the enum constant of this type with the specified name. 
 | 
static ProfileConfig.SUPPLEMENTAL_MODE[] | 
values()
Deprecated.  
Returns an array containing the constants of this enum type, in
the order they are declared. 
 | 
public static final ProfileConfig.SUPPLEMENTAL_MODE DEFAULT
public static final ProfileConfig.SUPPLEMENTAL_MODE NO
public static final ProfileConfig.SUPPLEMENTAL_MODE ALWAYS
public static final ProfileConfig.SUPPLEMENTAL_MODE AUTO
public static final ProfileConfig.SUPPLEMENTAL_MODE SMART
public static final ProfileConfig.SUPPLEMENTAL_MODE S_378_379
public static final ProfileConfig.SUPPLEMENTAL_MODE S_978_979
public static final ProfileConfig.SUPPLEMENTAL_MODE S_414_419_434_439
public static final ProfileConfig.SUPPLEMENTAL_MODE S_977
public static ProfileConfig.SUPPLEMENTAL_MODE[] values()
for (ProfileConfig.SUPPLEMENTAL_MODE c : ProfileConfig.SUPPLEMENTAL_MODE.values()) System.out.println(c);
public static ProfileConfig.SUPPLEMENTAL_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