public enum TopologyEventType extends java.lang.Enum<TopologyEventType>
Enum Constant and Description |
---|
LINK_DOWN |
LINK_UP |
NODE_DOWN |
NODE_UP |
Modifier and Type | Method and Description |
---|---|
static TopologyEventType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static TopologyEventType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TopologyEventType LINK_UP
public static final TopologyEventType LINK_DOWN
public static final TopologyEventType NODE_UP
public static final TopologyEventType NODE_DOWN
public static TopologyEventType[] values()
for (TopologyEventType c : TopologyEventType.values()) System.out.println(c);
public static TopologyEventType 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