public enum TextAliasing extends Enum<TextAliasing>
| Enum Constant and Description |
|---|
DEFAULT |
GASP |
LCD_HBGR |
LCD_HRGB |
LCD_VBGR |
LCD_VRGB |
OFF |
ON |
| Modifier and Type | Method and Description |
|---|---|
static TextAliasing |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TextAliasing[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TextAliasing DEFAULT
public static final TextAliasing GASP
public static final TextAliasing LCD_HBGR
public static final TextAliasing LCD_HRGB
public static final TextAliasing LCD_VBGR
public static final TextAliasing LCD_VRGB
public static final TextAliasing OFF
public static final TextAliasing ON
public static TextAliasing[] values()
for (TextAliasing c : TextAliasing.values()) System.out.println(c);
public static TextAliasing 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 nullCopyright © 2019. All rights reserved.