org.openflow.protocol
Enum OFError.OFBadActionCode

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

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


Enum Constant Summary
OFPBAC_BAD_ARGUMENT
           
OFPBAC_BAD_EXP_TYPE
           
OFPBAC_BAD_LEN
           
OFPBAC_BAD_OUT_GROUP
           
OFPBAC_BAD_OUT_PORT
           
OFPBAC_BAD_QUEUE
           
OFPBAC_BAD_SET_ARGUMENT
           
OFPBAC_BAD_SET_LEN
           
OFPBAC_BAD_SET_TYPE
           
OFPBAC_BAD_TAG
           
OFPBAC_BAD_TYPE
           
OFPBAC_BAD_VENDOR
           
OFPBAC_EPERM
           
OFPBAC_MATCH_INCONSISTENT
           
OFPBAC_TOO_MANY
           
OFPBAC_UNSUPPORTED_ORDER
           
 
Method Summary
static OFError.OFBadActionCode valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static OFError.OFBadActionCode[] 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

OFPBAC_BAD_TYPE

public static final OFError.OFBadActionCode OFPBAC_BAD_TYPE

OFPBAC_BAD_LEN

public static final OFError.OFBadActionCode OFPBAC_BAD_LEN

OFPBAC_BAD_VENDOR

public static final OFError.OFBadActionCode OFPBAC_BAD_VENDOR

OFPBAC_BAD_EXP_TYPE

public static final OFError.OFBadActionCode OFPBAC_BAD_EXP_TYPE

OFPBAC_BAD_OUT_PORT

public static final OFError.OFBadActionCode OFPBAC_BAD_OUT_PORT

OFPBAC_BAD_ARGUMENT

public static final OFError.OFBadActionCode OFPBAC_BAD_ARGUMENT

OFPBAC_EPERM

public static final OFError.OFBadActionCode OFPBAC_EPERM

OFPBAC_TOO_MANY

public static final OFError.OFBadActionCode OFPBAC_TOO_MANY

OFPBAC_BAD_QUEUE

public static final OFError.OFBadActionCode OFPBAC_BAD_QUEUE

OFPBAC_BAD_OUT_GROUP

public static final OFError.OFBadActionCode OFPBAC_BAD_OUT_GROUP

OFPBAC_MATCH_INCONSISTENT

public static final OFError.OFBadActionCode OFPBAC_MATCH_INCONSISTENT

OFPBAC_UNSUPPORTED_ORDER

public static final OFError.OFBadActionCode OFPBAC_UNSUPPORTED_ORDER

OFPBAC_BAD_TAG

public static final OFError.OFBadActionCode OFPBAC_BAD_TAG

OFPBAC_BAD_SET_TYPE

public static final OFError.OFBadActionCode OFPBAC_BAD_SET_TYPE

OFPBAC_BAD_SET_LEN

public static final OFError.OFBadActionCode OFPBAC_BAD_SET_LEN

OFPBAC_BAD_SET_ARGUMENT

public static final OFError.OFBadActionCode OFPBAC_BAD_SET_ARGUMENT
Method Detail

values

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