@Deprecated public static enum ProfileConfig.INVERSE_1D_MODE extends Enum<ProfileConfig.INVERSE_1D_MODE>
Example Usage: INVERSE_1D_MODE.DEFAULT;
| Enum Constant and Description | 
|---|
AUTO
Deprecated.  
Allows decoding of both positive as well as inverse 1D symbologies. 
 | 
DEFAULT
Deprecated.  
Default inverse 1D mode configured on device 
 | 
DISABLED
Deprecated.  
Disables decoding of inverse 1D symbologies 
 | 
ENABLED
Deprecated.  
Enables decoding of only inverse 1D symbologies. 
 | 
| Modifier and Type | Method and Description | 
|---|---|
static ProfileConfig.INVERSE_1D_MODE | 
valueOf(String name)
Deprecated.  
Returns the enum constant of this type with the specified name. 
 | 
static ProfileConfig.INVERSE_1D_MODE[] | 
values()
Deprecated.  
Returns an array containing the constants of this enum type, in
the order they are declared. 
 | 
public static final ProfileConfig.INVERSE_1D_MODE DEFAULT
public static final ProfileConfig.INVERSE_1D_MODE DISABLED
public static final ProfileConfig.INVERSE_1D_MODE ENABLED
public static final ProfileConfig.INVERSE_1D_MODE AUTO
public static ProfileConfig.INVERSE_1D_MODE[] values()
for (ProfileConfig.INVERSE_1D_MODE c : ProfileConfig.INVERSE_1D_MODE.values()) System.out.println(c);
public static ProfileConfig.INVERSE_1D_MODE 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