public static enum VirtualPortEvent.Type extends Enum<VirtualPortEvent.Type>
| Enum Constant and Description |
|---|
VIRTUAL_PORT_DELETE
Signifies that virtual port has been deleted.
|
VIRTUAL_PORT_PUT
Signifies that virtual port has been created.
|
VIRTUAL_PORT_UPDATE
Signifies that virtual port has been updated.
|
| Modifier and Type | Method and Description |
|---|---|
static VirtualPortEvent.Type |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static VirtualPortEvent.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final VirtualPortEvent.Type VIRTUAL_PORT_PUT
public static final VirtualPortEvent.Type VIRTUAL_PORT_DELETE
public static final VirtualPortEvent.Type VIRTUAL_PORT_UPDATE
public static VirtualPortEvent.Type[] values()
for (VirtualPortEvent.Type c : VirtualPortEvent.Type.values()) System.out.println(c);
public static VirtualPortEvent.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