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

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

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


Enum Constant Summary
ARROW
           
BUSY
           
CONTEXT_MENU
           
COPY_ROWS
           
EDIT
           
ERROR
           
FALSE
           
INFO
           
INPUT
           
LOCK
           
OUTPUT
           
PARALLEL
           
STEP_ERROR
           
TARGET
           
TRUE
           
UNCONDITIONAL
           
 
Method Summary
static GCInterface.EImage valueOf(String name)
          Returns the enum constant of this type with the specified name.
static GCInterface.EImage[] 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

LOCK

public static final GCInterface.EImage LOCK

STEP_ERROR

public static final GCInterface.EImage STEP_ERROR

EDIT

public static final GCInterface.EImage EDIT

CONTEXT_MENU

public static final GCInterface.EImage CONTEXT_MENU

TRUE

public static final GCInterface.EImage TRUE

FALSE

public static final GCInterface.EImage FALSE

ERROR

public static final GCInterface.EImage ERROR

INFO

public static final GCInterface.EImage INFO

TARGET

public static final GCInterface.EImage TARGET

INPUT

public static final GCInterface.EImage INPUT

OUTPUT

public static final GCInterface.EImage OUTPUT

ARROW

public static final GCInterface.EImage ARROW

COPY_ROWS

public static final GCInterface.EImage COPY_ROWS

UNCONDITIONAL

public static final GCInterface.EImage UNCONDITIONAL

PARALLEL

public static final GCInterface.EImage PARALLEL

BUSY

public static final GCInterface.EImage BUSY
Method Detail

values

public static GCInterface.EImage[] 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.EImage c : GCInterface.EImage.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.EImage 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