org.openflow.protocol
Enum OFError.OFBadRequestCode

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

public static enum OFError.OFBadRequestCode
extends java.lang.Enum<OFError.OFBadRequestCode>


Enum Constant Summary
OFPBRC_BAD_EXP_TYPE
           
OFPBRC_BAD_LEN
           
OFPBRC_BAD_PACKET
           
OFPBRC_BAD_PORT
           
OFPBRC_BAD_STATS
           
OFPBRC_BAD_TABLE_ID
           
OFPBRC_BAD_TYPE
           
OFPBRC_BAD_VENDOR
           
OFPBRC_BAD_VERSION
           
OFPBRC_BUFFER_EMPTY
           
OFPBRC_BUFFER_UNKNOWN
           
OFPBRC_EPERM
           
OFPBRC_IS_SLAVE
           
OFPBRC_STATS_BUFFER_OVERFLOW
           
 
Method Summary
static OFError.OFBadRequestCode valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static OFError.OFBadRequestCode[] 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

OFPBRC_BAD_VERSION

public static final OFError.OFBadRequestCode OFPBRC_BAD_VERSION

OFPBRC_BAD_TYPE

public static final OFError.OFBadRequestCode OFPBRC_BAD_TYPE

OFPBRC_BAD_STATS

public static final OFError.OFBadRequestCode OFPBRC_BAD_STATS

OFPBRC_BAD_VENDOR

public static final OFError.OFBadRequestCode OFPBRC_BAD_VENDOR

OFPBRC_BAD_EXP_TYPE

public static final OFError.OFBadRequestCode OFPBRC_BAD_EXP_TYPE

OFPBRC_EPERM

public static final OFError.OFBadRequestCode OFPBRC_EPERM

OFPBRC_BAD_LEN

public static final OFError.OFBadRequestCode OFPBRC_BAD_LEN

OFPBRC_BUFFER_EMPTY

public static final OFError.OFBadRequestCode OFPBRC_BUFFER_EMPTY

OFPBRC_BUFFER_UNKNOWN

public static final OFError.OFBadRequestCode OFPBRC_BUFFER_UNKNOWN

OFPBRC_BAD_TABLE_ID

public static final OFError.OFBadRequestCode OFPBRC_BAD_TABLE_ID

OFPBRC_IS_SLAVE

public static final OFError.OFBadRequestCode OFPBRC_IS_SLAVE

OFPBRC_BAD_PORT

public static final OFError.OFBadRequestCode OFPBRC_BAD_PORT

OFPBRC_BAD_PACKET

public static final OFError.OFBadRequestCode OFPBRC_BAD_PACKET

OFPBRC_STATS_BUFFER_OVERFLOW

public static final OFError.OFBadRequestCode OFPBRC_STATS_BUFFER_OVERFLOW
Method Detail

values

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

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

valueOf

public static OFError.OFBadRequestCode 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