public static enum Graph.NodeEvent extends Enum<Graph.NodeEvent>
Graph.NodeEventListener.| Enum Constant and Description |
|---|
AFTER_DECODING_FIELDS
Graph decoding (partial evaluation) may create nodes adding them to the graph in a "stub"
form before filling any node fields.
|
BEFORE_DECODING_FIELDS
Graph decoding (partial evaluation) may create nodes adding them to the graph in a "stub"
form before filling any node fields.
|
INPUT_CHANGED
A node's input is changed.
|
NODE_ADDED
A node was added to a graph.
|
NODE_REMOVED
A node was removed from the graph.
|
ZERO_USAGES
A node's usages count dropped to zero.
|
| Modifier and Type | Method and Description |
|---|---|
static Graph.NodeEvent |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Graph.NodeEvent[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Graph.NodeEvent INPUT_CHANGED
public static final Graph.NodeEvent ZERO_USAGES
public static final Graph.NodeEvent NODE_ADDED
public static final Graph.NodeEvent NODE_REMOVED
public static final Graph.NodeEvent BEFORE_DECODING_FIELDS
public static final Graph.NodeEvent AFTER_DECODING_FIELDS
public static Graph.NodeEvent[] values()
public static Graph.NodeEvent 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 null