@Deprecated public static enum ProfileConfig.LCD_MODE extends java.lang.Enum<ProfileConfig.LCD_MODE>
Example Usage: LCD_MODE.DEFAULT;
| Enum Constant and Description | 
|---|
DEFAULT
Deprecated.  
Default LCD mode configured on device 
 | 
DISABLED
Deprecated.  
Disables LCD mode 
 | 
ENABLED
Deprecated.  
Enables LCD mode. 
 | 
| Modifier and Type | Method and Description | 
|---|---|
static ProfileConfig.LCD_MODE | 
valueOf(java.lang.String name)
Deprecated.  
Returns the enum constant of this type with the specified name. 
 | 
static ProfileConfig.LCD_MODE[] | 
values()
Deprecated.  
Returns an array containing the constants of this enum type, in
the order they are declared. 
 | 
public static final ProfileConfig.LCD_MODE DEFAULT
public static final ProfileConfig.LCD_MODE DISABLED
public static final ProfileConfig.LCD_MODE ENABLED
public static ProfileConfig.LCD_MODE[] values()
for (ProfileConfig.LCD_MODE c : ProfileConfig.LCD_MODE.values()) System.out.println(c);
public static ProfileConfig.LCD_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