Package org.pentaho.di.core.gui
Enum PrimitiveGCInterface.EImage
- java.lang.Object
-
- java.lang.Enum<PrimitiveGCInterface.EImage>
-
- org.pentaho.di.core.gui.PrimitiveGCInterface.EImage
-
- All Implemented Interfaces:
Serializable
,Comparable<PrimitiveGCInterface.EImage>
- Enclosing interface:
- PrimitiveGCInterface
public static enum PrimitiveGCInterface.EImage extends Enum<PrimitiveGCInterface.EImage>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ARROW
ARROW_CANDIDATE
ARROW_DEFAULT
ARROW_DISABLED
ARROW_ERROR
ARROW_OK
BUSY
CHECKPOINT
CONTEXT_MENU
COPY_ROWS
DB
EDIT
ERROR
FALSE
INFO
INJECT
INPUT
LOAD_BALANCE
LOCK
OUTPUT
PARALLEL
STEP_ERROR
STEP_ERROR_RED
TARGET
TRUE
UNCONDITIONAL
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static PrimitiveGCInterface.EImage
valueOf(String name)
Returns the enum constant of this type with the specified name.static PrimitiveGCInterface.EImage[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
LOCK
public static final PrimitiveGCInterface.EImage LOCK
-
STEP_ERROR
public static final PrimitiveGCInterface.EImage STEP_ERROR
-
STEP_ERROR_RED
public static final PrimitiveGCInterface.EImage STEP_ERROR_RED
-
EDIT
public static final PrimitiveGCInterface.EImage EDIT
-
CONTEXT_MENU
public static final PrimitiveGCInterface.EImage CONTEXT_MENU
-
TRUE
public static final PrimitiveGCInterface.EImage TRUE
-
FALSE
public static final PrimitiveGCInterface.EImage FALSE
-
ERROR
public static final PrimitiveGCInterface.EImage ERROR
-
INFO
public static final PrimitiveGCInterface.EImage INFO
-
TARGET
public static final PrimitiveGCInterface.EImage TARGET
-
INPUT
public static final PrimitiveGCInterface.EImage INPUT
-
OUTPUT
public static final PrimitiveGCInterface.EImage OUTPUT
-
ARROW
public static final PrimitiveGCInterface.EImage ARROW
-
COPY_ROWS
public static final PrimitiveGCInterface.EImage COPY_ROWS
-
UNCONDITIONAL
public static final PrimitiveGCInterface.EImage UNCONDITIONAL
-
PARALLEL
public static final PrimitiveGCInterface.EImage PARALLEL
-
BUSY
public static final PrimitiveGCInterface.EImage BUSY
-
INJECT
public static final PrimitiveGCInterface.EImage INJECT
-
LOAD_BALANCE
public static final PrimitiveGCInterface.EImage LOAD_BALANCE
-
CHECKPOINT
public static final PrimitiveGCInterface.EImage CHECKPOINT
-
DB
public static final PrimitiveGCInterface.EImage DB
-
ARROW_DEFAULT
public static final PrimitiveGCInterface.EImage ARROW_DEFAULT
-
ARROW_OK
public static final PrimitiveGCInterface.EImage ARROW_OK
-
ARROW_ERROR
public static final PrimitiveGCInterface.EImage ARROW_ERROR
-
ARROW_DISABLED
public static final PrimitiveGCInterface.EImage ARROW_DISABLED
-
ARROW_CANDIDATE
public static final PrimitiveGCInterface.EImage ARROW_CANDIDATE
-
-
Method Detail
-
values
public static PrimitiveGCInterface.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 (PrimitiveGCInterface.EImage c : PrimitiveGCInterface.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 PrimitiveGCInterface.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 nameNullPointerException
- if the argument is null
-
-