org.openflow.protocol
Enum OFSwitchConfig.OFConfigFlags

java.lang.Object
  extended by java.lang.Enum<OFSwitchConfig.OFConfigFlags>
      extended by org.openflow.protocol.OFSwitchConfig.OFConfigFlags
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<OFSwitchConfig.OFConfigFlags>
Enclosing class:
OFSwitchConfig

public static enum OFSwitchConfig.OFConfigFlags
extends java.lang.Enum<OFSwitchConfig.OFConfigFlags>


Enum Constant Summary
OFPC_FRAG_DROP
           
OFPC_FRAG_MASK
           
OFPC_FRAG_NORMAL
           
OFPC_FRAG_REASM
           
 
Method Summary
static OFSwitchConfig.OFConfigFlags valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static OFSwitchConfig.OFConfigFlags[] 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

OFPC_FRAG_NORMAL

public static final OFSwitchConfig.OFConfigFlags OFPC_FRAG_NORMAL

OFPC_FRAG_DROP

public static final OFSwitchConfig.OFConfigFlags OFPC_FRAG_DROP

OFPC_FRAG_REASM

public static final OFSwitchConfig.OFConfigFlags OFPC_FRAG_REASM

OFPC_FRAG_MASK

public static final OFSwitchConfig.OFConfigFlags OFPC_FRAG_MASK
Method Detail

values

public static OFSwitchConfig.OFConfigFlags[] 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 (OFSwitchConfig.OFConfigFlags c : OFSwitchConfig.OFConfigFlags.values())
    System.out.println(c);

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

valueOf

public static OFSwitchConfig.OFConfigFlags 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