Package org.drasyl.util
Enum AnsiColor
- java.lang.Object
-
- java.lang.Enum<AnsiColor>
-
- org.drasyl.util.AnsiColor
-
- All Implemented Interfaces:
Serializable
,Comparable<AnsiColor>
public enum AnsiColor extends Enum<AnsiColor>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description COLOR_BLACK
COLOR_BLUE
COLOR_CYAN
COLOR_GREEN
COLOR_PURPLE
COLOR_RED
COLOR_RESET
COLOR_WHITE
COLOR_YELLOW
STYLE_BOLD
STYLE_REVERSED
STYLE_UNDERLINE
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getColor()
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.
-
-
-
Enum Constant Detail
-
COLOR_RESET
public static final AnsiColor COLOR_RESET
-
COLOR_BLACK
public static final AnsiColor COLOR_BLACK
-
COLOR_RED
public static final AnsiColor COLOR_RED
-
COLOR_GREEN
public static final AnsiColor COLOR_GREEN
-
COLOR_YELLOW
public static final AnsiColor COLOR_YELLOW
-
COLOR_BLUE
public static final AnsiColor COLOR_BLUE
-
COLOR_PURPLE
public static final AnsiColor COLOR_PURPLE
-
COLOR_CYAN
public static final AnsiColor COLOR_CYAN
-
COLOR_WHITE
public static final AnsiColor COLOR_WHITE
-
STYLE_REVERSED
public static final AnsiColor STYLE_REVERSED
-
STYLE_BOLD
public static final AnsiColor STYLE_BOLD
-
STYLE_UNDERLINE
public static final AnsiColor STYLE_UNDERLINE
-
-
Method Detail
-
values
public static AnsiColor[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (AnsiColor c : AnsiColor.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static AnsiColor valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-
getColor
public String getColor()
-
-