public static enum Doc.AnsiColor extends java.lang.Enum<Doc.AnsiColor>
| Modifier and Type | Method and Description |
|---|---|
java.lang.String |
code() |
static Doc.AnsiColor |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Doc.AnsiColor[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Doc.AnsiColor RED
public static final Doc.AnsiColor MAGENTA
public static final Doc.AnsiColor YELLOW
public static final Doc.AnsiColor DEFAULT
public static final Doc.AnsiColor RESET
public static Doc.AnsiColor[] values()
for (Doc.AnsiColor c : Doc.AnsiColor.values()) System.out.println(c);
public static Doc.AnsiColor 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 code()