public enum FlowEventType extends Enum<FlowEventType>
| Enum Constant and Description |
|---|
FLOW_MOD_PUSH_FAILED
A flow push failed.
|
FLOW_MOD_PUSHED
A flow was successfully pushed to a datapath.
|
FLOW_REMOVED
A flow was removed from a datapath.
|
| Modifier and Type | Method and Description |
|---|---|
static FlowEventType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static FlowEventType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FlowEventType FLOW_MOD_PUSHED
public static final FlowEventType FLOW_MOD_PUSH_FAILED
public static final FlowEventType FLOW_REMOVED
public static FlowEventType[] values()
for (FlowEventType c : FlowEventType.values()) System.out.println(c);
public static FlowEventType 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 nullCopyright © 2014. All Rights Reserved.