public enum TextLCDContrast extends Enum<TextLCDContrast>
| Enum Constant and Description |
|---|
LCD_HBGR |
LCD_HRGB |
LCD_VBGR |
LCD_VRGB |
NONE
No change to text-contrast setting.
|
| Modifier and Type | Method and Description |
|---|---|
static TextLCDContrast |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TextLCDContrast[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TextLCDContrast NONE
public static final TextLCDContrast LCD_HRGB
public static final TextLCDContrast LCD_HBGR
public static final TextLCDContrast LCD_VRGB
public static final TextLCDContrast LCD_VBGR
public static TextLCDContrast[] values()
for (TextLCDContrast c : TextLCDContrast.values()) System.out.println(c);
public static TextLCDContrast 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