| Enum Constant and Description |
|---|
BLACK |
BLUE |
CYAN |
DARK_BLUE |
DARK_CYAN |
DARK_GRAY |
DARK_GREEN |
DARK_MAGENTA |
DARK_RED |
DARK_YELLOW |
GREEN |
LIGHT_GRAY |
MAGENTA |
NONE |
RED |
YELLOW |
| Modifier and Type | Method and Description |
|---|---|
java.lang.String |
getCode() |
static Highlight |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Highlight[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Highlight NONE
public static final Highlight YELLOW
public static final Highlight GREEN
public static final Highlight CYAN
public static final Highlight MAGENTA
public static final Highlight BLUE
public static final Highlight RED
public static final Highlight DARK_BLUE
public static final Highlight DARK_CYAN
public static final Highlight DARK_GREEN
public static final Highlight DARK_MAGENTA
public static final Highlight DARK_RED
public static final Highlight DARK_YELLOW
public static final Highlight DARK_GRAY
public static final Highlight LIGHT_GRAY
public static final Highlight BLACK
public static Highlight[] values()
for (Highlight c : Highlight.values()) System.out.println(c);
public static Highlight 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 nullpublic java.lang.String getCode()