| Enum Constant and Description |
|---|
BLACK |
BLUE |
CYAN |
GREEN |
MAGENTA |
NONE |
RED |
RESET |
WHITE |
YELLOW |
| Modifier and Type | Method and Description |
|---|---|
static java.lang.String |
filter(java.lang.String str)
Filter color codes from the specified
value. |
java.lang.String |
format(java.lang.String value) |
java.lang.String |
toString() |
static Color |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Color[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Color NONE
public static final Color RESET
public static final Color BLACK
public static final Color RED
public static final Color GREEN
public static final Color YELLOW
public static final Color BLUE
public static final Color MAGENTA
public static final Color CYAN
public static final Color WHITE
public static Color[] values()
for (Color c : Color.values()) System.out.println(c);
public static Color 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 static java.lang.String filter(java.lang.String str)
value.str - The string which is to be filtered.public java.lang.String format(java.lang.String value)
value - The string which is to be colored.public java.lang.String toString()
toString in class java.lang.Enum<Color>