public static enum OFMatchReconcile.ReconcileAction extends java.lang.Enum<OFMatchReconcile.ReconcileAction>
Enum Constant and Description |
---|
APP_INSTANCE_CHANGED |
DELETE |
DROP
Delete the flow-mod from the switch
|
NEW_ENTRY
Program this new flow mod.
|
NO_CHANGE
Leave the flow-mod as-is.
|
UPDATE_PATH
Reprogram the flow mod as the path of the flow might have changed,
for example when a host is moved or when a link goes down.
|
Modifier and Type | Method and Description |
---|---|
static OFMatchReconcile.ReconcileAction |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static OFMatchReconcile.ReconcileAction[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final OFMatchReconcile.ReconcileAction DROP
public static final OFMatchReconcile.ReconcileAction NO_CHANGE
public static final OFMatchReconcile.ReconcileAction NEW_ENTRY
public static final OFMatchReconcile.ReconcileAction UPDATE_PATH
public static final OFMatchReconcile.ReconcileAction APP_INSTANCE_CHANGED
public static final OFMatchReconcile.ReconcileAction DELETE
public static OFMatchReconcile.ReconcileAction[] values()
for (OFMatchReconcile.ReconcileAction c : OFMatchReconcile.ReconcileAction.values()) System.out.println(c);
public static OFMatchReconcile.ReconcileAction 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