@Deprecated public static enum ProfileConfig.VIEWFINDER_MODE extends Enum<ProfileConfig.VIEWFINDER_MODE>
Example Usage: VIEWFINDER_MODE.ENABLED;
| Enum Constant and Description | 
|---|
DEFAULT
Deprecated.  
Default view finder mode configured on the device 
 | 
DISABLED
Deprecated.  
Viewfinder disabled. 
 | 
ENABLED
Deprecated.  
Viewfinder enabled. 
 | 
STATIC_RECTICLE
Deprecated.  
Viewfinder enabled with locate reticle. 
 | 
| Modifier and Type | Method and Description | 
|---|---|
static ProfileConfig.VIEWFINDER_MODE | 
valueOf(String name)
Deprecated.  
Returns the enum constant of this type with the specified name. 
 | 
static ProfileConfig.VIEWFINDER_MODE[] | 
values()
Deprecated.  
Returns an array containing the constants of this enum type, in
the order they are declared. 
 | 
public static final ProfileConfig.VIEWFINDER_MODE DEFAULT
public static final ProfileConfig.VIEWFINDER_MODE DISABLED
public static final ProfileConfig.VIEWFINDER_MODE ENABLED
public static final ProfileConfig.VIEWFINDER_MODE STATIC_RECTICLE
public static ProfileConfig.VIEWFINDER_MODE[] values()
for (ProfileConfig.VIEWFINDER_MODE c : ProfileConfig.VIEWFINDER_MODE.values()) System.out.println(c);
public static ProfileConfig.VIEWFINDER_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