Enum TerminalOutput.Color
- java.lang.Object
-
- java.lang.Enum<TerminalOutput.Color>
-
- net.rubygrapefruit.platform.terminal.TerminalOutput.Color
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<TerminalOutput.Color>
- Enclosing interface:
- TerminalOutput
public static enum TerminalOutput.Color extends java.lang.Enum<TerminalOutput.Color>
Basic colors supported by a terminal.
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static TerminalOutput.ColorvalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static TerminalOutput.Color[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
Black
public static final TerminalOutput.Color Black
-
Red
public static final TerminalOutput.Color Red
-
Green
public static final TerminalOutput.Color Green
-
Yellow
public static final TerminalOutput.Color Yellow
-
Blue
public static final TerminalOutput.Color Blue
-
Magenta
public static final TerminalOutput.Color Magenta
-
Cyan
public static final TerminalOutput.Color Cyan
-
White
public static final TerminalOutput.Color White
-
-
Method Detail
-
values
public static TerminalOutput.Color[] 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 (TerminalOutput.Color c : TerminalOutput.Color.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static TerminalOutput.Color valueOf(java.lang.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:
java.lang.IllegalArgumentException- if this enum type has no constant with the specified namejava.lang.NullPointerException- if the argument is null
-
-