public static enum FlowEntry.FlowEntryState extends java.lang.Enum<FlowEntry.FlowEntryState>
Enum Constant and Description |
---|
ADDED
Rule has been added which means it is in the flow table.
|
FAILED
Indicates that the installation of this flow has failed.
|
PENDING_ADD
Indicates that this rule has been submitted for addition.
|
PENDING_REMOVE
Flow has been marked for removal, might still be in flow table.
|
REMOVED
Flow has been removed from flow table and can be purged.
|
Modifier and Type | Method and Description |
---|---|
static FlowEntry.FlowEntryState |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static FlowEntry.FlowEntryState[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FlowEntry.FlowEntryState PENDING_ADD
public static final FlowEntry.FlowEntryState ADDED
public static final FlowEntry.FlowEntryState PENDING_REMOVE
public static final FlowEntry.FlowEntryState REMOVED
public static final FlowEntry.FlowEntryState FAILED
public static FlowEntry.FlowEntryState[] values()
for (FlowEntry.FlowEntryState c : FlowEntry.FlowEntryState.values()) System.out.println(c);
public static FlowEntry.FlowEntryState 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