public static enum EdgePortEvent.Type extends java.lang.Enum<EdgePortEvent.Type>
Enum Constant and Description |
---|
EDGE_PORT_ADDED
Signifies that a new edge port was detected.
|
EDGE_PORT_REMOVED
Signifies that a new edge port vanished.
|
Modifier and Type | Method and Description |
---|---|
static EdgePortEvent.Type |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static EdgePortEvent.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EdgePortEvent.Type EDGE_PORT_ADDED
public static final EdgePortEvent.Type EDGE_PORT_REMOVED
public static EdgePortEvent.Type[] values()
for (EdgePortEvent.Type c : EdgePortEvent.Type.values()) System.out.println(c);
public static EdgePortEvent.Type 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