public enum FlowActionType extends java.lang.Enum<FlowActionType>
| Enum Constant and Description |
|---|
CONTROLLER
flow rule controller action (i.e.
|
DROP
flow rule DROP action (i.e.
|
OUTPUT
flow rule OUTPUT action (i.e.
|
| Modifier and Type | Method and Description |
|---|---|
static FlowActionType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static FlowActionType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FlowActionType DROP
public static final FlowActionType OUTPUT
public static final FlowActionType CONTROLLER
public static FlowActionType[] values()
for (FlowActionType c : FlowActionType.values()) System.out.println(c);
public static FlowActionType valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is null