public static enum RouterInterfaceEvent.Type extends Enum<RouterInterfaceEvent.Type>
| Enum Constant and Description |
|---|
ROUTER_INTERFACE_DELETE
Signifies that router interface has been removed.
|
ROUTER_INTERFACE_PUT
Signifies that router interface has been added.
|
| Modifier and Type | Method and Description |
|---|---|
static RouterInterfaceEvent.Type |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static RouterInterfaceEvent.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RouterInterfaceEvent.Type ROUTER_INTERFACE_PUT
public static final RouterInterfaceEvent.Type ROUTER_INTERFACE_DELETE
public static RouterInterfaceEvent.Type[] values()
for (RouterInterfaceEvent.Type c : RouterInterfaceEvent.Type.values()) System.out.println(c);
public static RouterInterfaceEvent.Type 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