org.pentaho.di.core.gui
Enum AreaOwner.AreaType

java.lang.Object
  extended by java.lang.Enum<AreaOwner.AreaType>
      extended by org.pentaho.di.core.gui.AreaOwner.AreaType
All Implemented Interfaces:
Serializable, Comparable<AreaOwner.AreaType>
Enclosing class:
AreaOwner

public static enum AreaOwner.AreaType
extends Enum<AreaOwner.AreaType>


Enum Constant Summary
HOP_COPY_ICON
           
HOP_ERROR_ICON
           
HOP_INFO_ICON
           
HOP_INFO_STEP_COPIES_ERROR
           
JOB_ENTRY_BUSY
           
JOB_ENTRY_ICON
           
JOB_ENTRY_MINI_ICON_CONTEXT
           
JOB_ENTRY_MINI_ICON_EDIT
           
JOB_ENTRY_MINI_ICON_INPUT
           
JOB_ENTRY_MINI_ICON_OUTPUT
           
JOB_ENTRY_RESULT_FAILURE
           
JOB_ENTRY_RESULT_SUCCESS
           
JOB_HOP_ICON
           
JOB_HOP_PARALLEL_ICON
           
MINI_ICONS_BALLOON
           
NOTE
           
REMOTE_INPUT_STEP
           
REMOTE_OUTPUT_STEP
           
STEP_EDIT_ICON
           
STEP_ERROR_HOP_ICON
           
STEP_ERROR_ICON
           
STEP_ICON
           
STEP_INFO_HOP_ICON
           
STEP_INPUT_HOP_ICON
           
STEP_MENU_ICON
           
STEP_OUTPUT_HOP_ICON
           
STEP_PARTITIONING
           
STEP_TARGET_HOP_ICON
           
STEP_TARGET_HOP_ICON_OPTION
           
 
Method Summary
static AreaOwner.AreaType valueOf(String name)
          Returns the enum constant of this type with the specified name.
static AreaOwner.AreaType[] 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

NOTE

public static final AreaOwner.AreaType NOTE

REMOTE_INPUT_STEP

public static final AreaOwner.AreaType REMOTE_INPUT_STEP

REMOTE_OUTPUT_STEP

public static final AreaOwner.AreaType REMOTE_OUTPUT_STEP

STEP_PARTITIONING

public static final AreaOwner.AreaType STEP_PARTITIONING

STEP_ICON

public static final AreaOwner.AreaType STEP_ICON

STEP_ERROR_ICON

public static final AreaOwner.AreaType STEP_ERROR_ICON

STEP_INPUT_HOP_ICON

public static final AreaOwner.AreaType STEP_INPUT_HOP_ICON

STEP_OUTPUT_HOP_ICON

public static final AreaOwner.AreaType STEP_OUTPUT_HOP_ICON

STEP_INFO_HOP_ICON

public static final AreaOwner.AreaType STEP_INFO_HOP_ICON

STEP_ERROR_HOP_ICON

public static final AreaOwner.AreaType STEP_ERROR_HOP_ICON

STEP_TARGET_HOP_ICON

public static final AreaOwner.AreaType STEP_TARGET_HOP_ICON

HOP_COPY_ICON

public static final AreaOwner.AreaType HOP_COPY_ICON

HOP_ERROR_ICON

public static final AreaOwner.AreaType HOP_ERROR_ICON

HOP_INFO_ICON

public static final AreaOwner.AreaType HOP_INFO_ICON

HOP_INFO_STEP_COPIES_ERROR

public static final AreaOwner.AreaType HOP_INFO_STEP_COPIES_ERROR

MINI_ICONS_BALLOON

public static final AreaOwner.AreaType MINI_ICONS_BALLOON

STEP_TARGET_HOP_ICON_OPTION

public static final AreaOwner.AreaType STEP_TARGET_HOP_ICON_OPTION

STEP_EDIT_ICON

public static final AreaOwner.AreaType STEP_EDIT_ICON

STEP_MENU_ICON

public static final AreaOwner.AreaType STEP_MENU_ICON

JOB_ENTRY_ICON

public static final AreaOwner.AreaType JOB_ENTRY_ICON

JOB_HOP_ICON

public static final AreaOwner.AreaType JOB_HOP_ICON

JOB_HOP_PARALLEL_ICON

public static final AreaOwner.AreaType JOB_HOP_PARALLEL_ICON

JOB_ENTRY_MINI_ICON_INPUT

public static final AreaOwner.AreaType JOB_ENTRY_MINI_ICON_INPUT

JOB_ENTRY_MINI_ICON_OUTPUT

public static final AreaOwner.AreaType JOB_ENTRY_MINI_ICON_OUTPUT

JOB_ENTRY_MINI_ICON_CONTEXT

public static final AreaOwner.AreaType JOB_ENTRY_MINI_ICON_CONTEXT

JOB_ENTRY_MINI_ICON_EDIT

public static final AreaOwner.AreaType JOB_ENTRY_MINI_ICON_EDIT

JOB_ENTRY_BUSY

public static final AreaOwner.AreaType JOB_ENTRY_BUSY

JOB_ENTRY_RESULT_SUCCESS

public static final AreaOwner.AreaType JOB_ENTRY_RESULT_SUCCESS

JOB_ENTRY_RESULT_FAILURE

public static final AreaOwner.AreaType JOB_ENTRY_RESULT_FAILURE
Method Detail

values

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

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

valueOf

public static AreaOwner.AreaType 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