public static enum GraphCanvasEvent.GraphCanvasEventType extends Enum<GraphCanvasEvent.GraphCanvasEventType>
| Enum Constant and Description |
|---|
GRAPH_LOADED
A graph was loaded.
|
INPUT_PORT_SELECTED
An input port is selected.
|
NAME_CHANGED
The name or the description of the workflow has changed.
|
NODE_SELECTED
A node is selected.
|
OUTPUT_PORT_SELECTED
An output port is selected.
|
WORKFLOW_CHANGED
Event when the workflow was changed
|
| Modifier and Type | Method and Description |
|---|---|
static GraphCanvasEvent.GraphCanvasEventType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static GraphCanvasEvent.GraphCanvasEventType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final GraphCanvasEvent.GraphCanvasEventType GRAPH_LOADED
public static final GraphCanvasEvent.GraphCanvasEventType NAME_CHANGED
public static final GraphCanvasEvent.GraphCanvasEventType NODE_SELECTED
public static final GraphCanvasEvent.GraphCanvasEventType INPUT_PORT_SELECTED
public static final GraphCanvasEvent.GraphCanvasEventType OUTPUT_PORT_SELECTED
public static final GraphCanvasEvent.GraphCanvasEventType WORKFLOW_CHANGED
public static GraphCanvasEvent.GraphCanvasEventType[] values()
for (GraphCanvasEvent.GraphCanvasEventType c : GraphCanvasEvent.GraphCanvasEventType.values()) System.out.println(c);
public static GraphCanvasEvent.GraphCanvasEventType valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant
with the specified nameNullPointerException - if the argument is nullCopyright © 2011–2014 The Apache Software Foundation. All rights reserved.