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