public enum AnsiColor extends Enum<AnsiColor>
| Modifier and Type | Method and Description |
|---|---|
String |
toString() |
static AnsiColor |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AnsiColor[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AnsiColor BLACK
public static final AnsiColor RED
public static final AnsiColor YELLOW
public static final AnsiColor BLUE
public static final AnsiColor PURPLE
public static final AnsiColor CYAN
public static final AnsiColor WHITE
public static final AnsiColor GREEN
public static final AnsiColor INTENSE_BLACK
public static final AnsiColor INTENSE_RED
public static final AnsiColor INTENSE_YELLOW
public static final AnsiColor INTENSE_BLUE
public static final AnsiColor INTENSE_PURPLE
public static final AnsiColor INTENSE_CYAN
public static final AnsiColor INTENSE_WHITE
public static final AnsiColor INTENSE_GREEN
public static final AnsiColor BOLD_INTENSE_BLACK
public static final AnsiColor BOLD_INTENSE_RED
public static final AnsiColor BOLD_INTENSE_YELLOW
public static final AnsiColor BOLD_INTENSE_BLUE
public static final AnsiColor BOLD_INTENSE_PURPLE
public static final AnsiColor BOLD_INTENSE_CYAN
public static final AnsiColor BOLD_INTENSE_WHITE
public static final AnsiColor BOLD_INTENSE_GREEN
public static final AnsiColor RESET
public static final AnsiColor NOTHING
public static AnsiColor[] values()
for (AnsiColor c : AnsiColor.values()) System.out.println(c);
public static AnsiColor 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.