Package org.apache.hop.ui.core.bus
Enum HopGuiEvents
- java.lang.Object
-
- java.lang.Enum<HopGuiEvents>
-
- org.apache.hop.ui.core.bus.HopGuiEvents
-
- All Implemented Interfaces:
Serializable,Comparable<HopGuiEvents>
public enum HopGuiEvents extends Enum<HopGuiEvents>
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static HopGuiEventsvalueOf(String name)Returns the enum constant of this type with the specified name.static HopGuiEvents[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
MetadataChanged
public static final HopGuiEvents MetadataChanged
-
MetadataCreated
public static final HopGuiEvents MetadataCreated
-
MetadataDeleted
public static final HopGuiEvents MetadataDeleted
-
WorkflowCreated
public static final HopGuiEvents WorkflowCreated
-
WorkflowOpened
public static final HopGuiEvents WorkflowOpened
-
WorkflowUpdated
public static final HopGuiEvents WorkflowUpdated
-
WorkflowDeleted
public static final HopGuiEvents WorkflowDeleted
-
WorkflowStarted
public static final HopGuiEvents WorkflowStarted
-
WorkflowStopped
public static final HopGuiEvents WorkflowStopped
-
WorkflowPaused
public static final HopGuiEvents WorkflowPaused
-
WorkflowResumed
public static final HopGuiEvents WorkflowResumed
-
PipelineCreated
public static final HopGuiEvents PipelineCreated
-
PipelineOpened
public static final HopGuiEvents PipelineOpened
-
PipelineUpdated
public static final HopGuiEvents PipelineUpdated
-
PipelineDeleted
public static final HopGuiEvents PipelineDeleted
-
PipelineStarted
public static final HopGuiEvents PipelineStarted
-
PipelineStopped
public static final HopGuiEvents PipelineStopped
-
PipelinePaused
public static final HopGuiEvents PipelinePaused
-
PipelineResumed
public static final HopGuiEvents PipelineResumed
-
ProjectCreated
public static final HopGuiEvents ProjectCreated
-
ProjectUpdated
public static final HopGuiEvents ProjectUpdated
-
ProjectDeleted
public static final HopGuiEvents ProjectDeleted
-
ProjectActivated
public static final HopGuiEvents ProjectActivated
-
ProjectDeactivated
public static final HopGuiEvents ProjectDeactivated
-
-
Method Detail
-
values
public static HopGuiEvents[] 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 (HopGuiEvents c : HopGuiEvents.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static HopGuiEvents 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
-
-