org.openflow.protocol
Enum OFError.OFBadMatchCode

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

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


Enum Constant Summary
OFPBMC_BAD_DL_ADDR_MASK
           
OFPBMC_BAD_FIELD
           
OFPBMC_BAD_LEN
           
OFPBMC_BAD_MASK
           
OFPBMC_BAD_NW_ADDR_MASK
           
OFPBMC_BAD_PREREQ
           
OFPBMC_BAD_TAG
           
OFPBMC_BAD_TYPE
           
OFPBMC_BAD_VALUE
           
OFPBMC_BAD_WILDCARDS
           
OFPBMC_DUP_FIELD
           
OFPBMC_EPERM
           
 
Method Summary
static OFError.OFBadMatchCode valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static OFError.OFBadMatchCode[] 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

OFPBMC_BAD_TYPE

public static final OFError.OFBadMatchCode OFPBMC_BAD_TYPE

OFPBMC_BAD_LEN

public static final OFError.OFBadMatchCode OFPBMC_BAD_LEN

OFPBMC_BAD_TAG

public static final OFError.OFBadMatchCode OFPBMC_BAD_TAG

OFPBMC_BAD_DL_ADDR_MASK

public static final OFError.OFBadMatchCode OFPBMC_BAD_DL_ADDR_MASK

OFPBMC_BAD_NW_ADDR_MASK

public static final OFError.OFBadMatchCode OFPBMC_BAD_NW_ADDR_MASK

OFPBMC_BAD_WILDCARDS

public static final OFError.OFBadMatchCode OFPBMC_BAD_WILDCARDS

OFPBMC_BAD_FIELD

public static final OFError.OFBadMatchCode OFPBMC_BAD_FIELD

OFPBMC_BAD_VALUE

public static final OFError.OFBadMatchCode OFPBMC_BAD_VALUE

OFPBMC_BAD_MASK

public static final OFError.OFBadMatchCode OFPBMC_BAD_MASK

OFPBMC_BAD_PREREQ

public static final OFError.OFBadMatchCode OFPBMC_BAD_PREREQ

OFPBMC_DUP_FIELD

public static final OFError.OFBadMatchCode OFPBMC_DUP_FIELD

OFPBMC_EPERM

public static final OFError.OFBadMatchCode OFPBMC_EPERM
Method Detail

values

public static OFError.OFBadMatchCode[] 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.OFBadMatchCode c : OFError.OFBadMatchCode.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.OFBadMatchCode 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