org.pentaho.di.trans.step.errorhandling
Enum StreamIcon
java.lang.Object
java.lang.Enum<StreamIcon>
org.pentaho.di.trans.step.errorhandling.StreamIcon
- All Implemented Interfaces:
- Serializable, Comparable<StreamIcon>
public enum StreamIcon
- extends Enum<StreamIcon>
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. |
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
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