net.floodlightcontroller.flowcache
Enum OFMatchReconcile.ReconcileAction

java.lang.Object
  extended by java.lang.Enum<OFMatchReconcile.ReconcileAction>
      extended by net.floodlightcontroller.flowcache.OFMatchReconcile.ReconcileAction
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<OFMatchReconcile.ReconcileAction>
Enclosing class:
OFMatchReconcile

public static enum OFMatchReconcile.ReconcileAction
extends java.lang.Enum<OFMatchReconcile.ReconcileAction>

The enum ReconcileAction. Specifies the result of reconciliation of a flow.


Enum Constant Summary
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.
 
Method Summary
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.
 
Methods inherited from class java.lang.Enum
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

DROP

public static final OFMatchReconcile.ReconcileAction DROP
Delete the flow-mod from the switch


NO_CHANGE

public static final OFMatchReconcile.ReconcileAction NO_CHANGE
Leave the flow-mod as-is.


NEW_ENTRY

public static final OFMatchReconcile.ReconcileAction NEW_ENTRY
Program this new flow mod.


UPDATE_PATH

public static final OFMatchReconcile.ReconcileAction 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.


APP_INSTANCE_CHANGED

public static final OFMatchReconcile.ReconcileAction APP_INSTANCE_CHANGED

DELETE

public static final OFMatchReconcile.ReconcileAction DELETE
Method Detail

values

public static OFMatchReconcile.ReconcileAction[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
for (OFMatchReconcile.ReconcileAction c : OFMatchReconcile.ReconcileAction.values())
    System.out.println(c);

Returns:
an array containing the constants of this enum type, in the order they are declared

valueOf

public static OFMatchReconcile.ReconcileAction valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)

Parameters:
name - the name of the enum constant to be returned.
Returns:
the enum constant with the specified name
Throws:
java.lang.IllegalArgumentException - if this enum type has no constant with the specified name
java.lang.NullPointerException - if the argument is null