Package org.apache.hop.core.gui
Enum AreaOwner.AreaType
- java.lang.Object
-
- java.lang.Enum<AreaOwner.AreaType>
-
- org.apache.hop.core.gui.AreaOwner.AreaType
-
- All Implemented Interfaces:
Serializable,Comparable<AreaOwner.AreaType>
public static enum AreaOwner.AreaType extends Enum<AreaOwner.AreaType>
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static AreaOwner.AreaTypevalueOf(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.
-
-
-
Enum Constant Detail
-
NOTE
public static final AreaOwner.AreaType NOTE
-
TRANSFORM_PARTITIONING
public static final AreaOwner.AreaType TRANSFORM_PARTITIONING
-
TRANSFORM_ICON
public static final AreaOwner.AreaType TRANSFORM_ICON
-
TRANSFORM_NAME
public static final AreaOwner.AreaType TRANSFORM_NAME
-
TRANSFORM_INFO_ICON
public static final AreaOwner.AreaType TRANSFORM_INFO_ICON
-
TRANSFORM_FAILURE_ICON
public static final AreaOwner.AreaType TRANSFORM_FAILURE_ICON
-
TRANSFORM_INPUT_HOP_ICON
public static final AreaOwner.AreaType TRANSFORM_INPUT_HOP_ICON
-
TRANSFORM_OUTPUT_HOP_ICON
public static final AreaOwner.AreaType TRANSFORM_OUTPUT_HOP_ICON
-
TRANSFORM_INFO_HOP_ICON
public static final AreaOwner.AreaType TRANSFORM_INFO_HOP_ICON
-
TRANSFORM_ERROR_HOP_ICON
public static final AreaOwner.AreaType TRANSFORM_ERROR_HOP_ICON
-
TRANSFORM_TARGET_HOP_ICON
public static final AreaOwner.AreaType TRANSFORM_TARGET_HOP_ICON
-
HOP_COPY_ICON
public static final AreaOwner.AreaType HOP_COPY_ICON
-
ROW_DISTRIBUTION_ICON
public static final AreaOwner.AreaType ROW_DISTRIBUTION_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_TRANSFORM_COPIES_ERROR
public static final AreaOwner.AreaType HOP_INFO_TRANSFORM_COPIES_ERROR
-
HOP_INFO_TRANSFORMS_PARTITIONED
public static final AreaOwner.AreaType HOP_INFO_TRANSFORMS_PARTITIONED
-
TRANSFORM_TARGET_HOP_ICON_OPTION
public static final AreaOwner.AreaType TRANSFORM_TARGET_HOP_ICON_OPTION
-
TRANSFORM_EDIT_ICON
public static final AreaOwner.AreaType TRANSFORM_EDIT_ICON
-
TRANSFORM_MENU_ICON
public static final AreaOwner.AreaType TRANSFORM_MENU_ICON
-
TRANSFORM_COPIES_TEXT
public static final AreaOwner.AreaType TRANSFORM_COPIES_TEXT
-
TRANSFORM_DATA_SERVICE
public static final AreaOwner.AreaType TRANSFORM_DATA_SERVICE
-
ACTION_ICON
public static final AreaOwner.AreaType ACTION_ICON
-
ACTION_NAME
public static final AreaOwner.AreaType ACTION_NAME
-
ACTION_INFO_ICON
public static final AreaOwner.AreaType ACTION_INFO_ICON
-
WORKFLOW_HOP_ICON
public static final AreaOwner.AreaType WORKFLOW_HOP_ICON
-
WORKFLOW_HOP_PARALLEL_ICON
public static final AreaOwner.AreaType WORKFLOW_HOP_PARALLEL_ICON
-
ACTION_BUSY
public static final AreaOwner.AreaType ACTION_BUSY
-
ACTION_RESULT_SUCCESS
public static final AreaOwner.AreaType ACTION_RESULT_SUCCESS
-
ACTION_RESULT_FAILURE
public static final AreaOwner.AreaType ACTION_RESULT_FAILURE
-
ACTION_RESULT_CHECKPOINT
public static final AreaOwner.AreaType ACTION_RESULT_CHECKPOINT
-
TRANSFORM_INJECT_ICON
public static final AreaOwner.AreaType TRANSFORM_INJECT_ICON
-
TRANSFORM_OUTPUT_DATA
public static final AreaOwner.AreaType TRANSFORM_OUTPUT_DATA
-
CUSTOM
public static final AreaOwner.AreaType CUSTOM
-
-
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 nameNullPointerException- if the argument is null
-
-