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