public static enum NodeEvent.EventId extends java.lang.Enum<NodeEvent.EventId>
Enum Constant and Description |
---|
ADDED_TO_PARENT |
COMPONENT_ADDED |
COMPONENT_REMOVED |
REMOVED_FROM_PARENT |
Modifier and Type | Method and Description |
---|---|
static NodeEvent.EventId |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static NodeEvent.EventId[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final NodeEvent.EventId ADDED_TO_PARENT
public static final NodeEvent.EventId REMOVED_FROM_PARENT
public static final NodeEvent.EventId COMPONENT_ADDED
public static final NodeEvent.EventId COMPONENT_REMOVED
public static NodeEvent.EventId[] values()
for (NodeEvent.EventId c : NodeEvent.EventId.values()) System.out.println(c);
public static NodeEvent.EventId valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null