org.pentaho.di.trans.step.errorhandling
Enum StreamIcon

java.lang.Object
  extended by java.lang.Enum<StreamIcon>
      extended by org.pentaho.di.trans.step.errorhandling.StreamIcon
All Implemented Interfaces:
Serializable, Comparable<StreamIcon>

public enum StreamIcon
extends Enum<StreamIcon>


Enum Constant Summary
ERROR
           
FALSE
           
GENERIC
           
INFO
           
INPUT
           
OUTPUT
           
TARGET
           
TRUE
           
 
Method Summary
static StreamIcon valueOf(String name)
          Returns the enum constant of this type with the specified name.
static StreamIcon[] 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

GENERIC

public static final StreamIcon GENERIC

TRUE

public static final StreamIcon TRUE

FALSE

public static final StreamIcon FALSE

ERROR

public static final StreamIcon ERROR

INFO

public static final StreamIcon INFO

TARGET

public static final StreamIcon TARGET

INPUT

public static final StreamIcon INPUT

OUTPUT

public static final StreamIcon OUTPUT
Method Detail

values

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

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

valueOf

public static StreamIcon 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