org.pentaho.di.core.gui
Enum GCInterface.EColor

java.lang.Object
  extended by java.lang.Enum<GCInterface.EColor>
      extended by org.pentaho.di.core.gui.GCInterface.EColor
All Implemented Interfaces:
Serializable, Comparable<GCInterface.EColor>
Enclosing interface:
GCInterface

public static enum GCInterface.EColor
extends Enum<GCInterface.EColor>


Enum Constant Summary
BACKGROUND
           
BLACK
           
BLUE
           
DARKGRAY
           
GRAY
           
GREEN
           
LIGHTGRAY
           
MAGENTA
           
ORANGE
           
RED
           
YELLOW
           
 
Method Summary
static GCInterface.EColor valueOf(String name)
          Returns the enum constant of this type with the specified name.
static GCInterface.EColor[] values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 
Methods inherited from class java.lang.Enum
compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

BACKGROUND

public static final GCInterface.EColor BACKGROUND

BLACK

public static final GCInterface.EColor BLACK

RED

public static final GCInterface.EColor RED

YELLOW

public static final GCInterface.EColor YELLOW

ORANGE

public static final GCInterface.EColor ORANGE

GREEN

public static final GCInterface.EColor GREEN

BLUE

public static final GCInterface.EColor BLUE

MAGENTA

public static final GCInterface.EColor MAGENTA

GRAY

public static final GCInterface.EColor GRAY

LIGHTGRAY

public static final GCInterface.EColor LIGHTGRAY

DARKGRAY

public static final GCInterface.EColor DARKGRAY
Method Detail

values

public static GCInterface.EColor[] 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 (GCInterface.EColor c : GCInterface.EColor.values())
    System.out.println(c);

Returns:
an array containing the constants of this enum type, in the order they are declared

valueOf

public static GCInterface.EColor 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 name
NullPointerException - if the argument is null