Package net.rubygrapefruit.platform
Enum Terminal.Color
- java.lang.Object
-
- java.lang.Enum<Terminal.Color>
-
- net.rubygrapefruit.platform.Terminal.Color
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<Terminal.Color>
- Enclosing interface:
- Terminal
public static enum Terminal.Color extends java.lang.Enum<Terminal.Color>
Basic colors supported by a terminal.
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static Terminal.Color
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static Terminal.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 Terminal.Color Black
-
Red
public static final Terminal.Color Red
-
Green
public static final Terminal.Color Green
-
Yellow
public static final Terminal.Color Yellow
-
Blue
public static final Terminal.Color Blue
-
Magenta
public static final Terminal.Color Magenta
-
Cyan
public static final Terminal.Color Cyan
-
White
public static final Terminal.Color White
-
-
Method Detail
-
values
public static Terminal.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 (Terminal.Color c : Terminal.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 Terminal.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
-
-