public static enum BgpPeer.FlowSpecOperation extends Enum<BgpPeer.FlowSpecOperation>
| Enum Constant and Description |
|---|
ADD
Signifies addition of flow specification rule.
|
DELETE
Signifies deletion of flow specification rule.
|
UPDATE
Signifies updation of flow specification rule.
|
| Modifier and Type | Method and Description |
|---|---|
static BgpPeer.FlowSpecOperation |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static BgpPeer.FlowSpecOperation[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BgpPeer.FlowSpecOperation ADD
public static final BgpPeer.FlowSpecOperation UPDATE
public static final BgpPeer.FlowSpecOperation DELETE
public static BgpPeer.FlowSpecOperation[] values()
for (BgpPeer.FlowSpecOperation c : BgpPeer.FlowSpecOperation.values()) System.out.println(c);
public static BgpPeer.FlowSpecOperation 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