public static enum TraceEvent.EventKind extends Enum<TraceEvent.EventKind>
Enum Constant and Description |
---|
ADD_NODE |
DEL_NODE |
MOVE_NODE |
SELECT_NODE |
START_TOPOLOGY |
Modifier and Type | Method and Description |
---|---|
static TraceEvent.EventKind |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TraceEvent.EventKind[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TraceEvent.EventKind ADD_NODE
public static final TraceEvent.EventKind DEL_NODE
public static final TraceEvent.EventKind SELECT_NODE
public static final TraceEvent.EventKind MOVE_NODE
public static final TraceEvent.EventKind START_TOPOLOGY
public static TraceEvent.EventKind[] values()
for (TraceEvent.EventKind c : TraceEvent.EventKind.values()) System.out.println(c);
public static TraceEvent.EventKind 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