net.rubygrapefruit.platform
Enum Terminal.Color

java.lang.Object
  extended by java.lang.Enum<Terminal.Color>
      extended by 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.


Enum Constant Summary
Black
           
Blue
           
Cyan
           
Green
           
Magenta
           
Red
           
White
           
Yellow
           
 
Method Summary
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.
 
Methods inherited from class java.lang.Enum
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

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 name
java.lang.NullPointerException - if the argument is null