org.openflow.protocol
Enum OFError.OFBadInstructionCode

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

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


Enum Constant Summary
OFPBIC_BAD_EXP_TYPE
           
OFPBIC_BAD_LEN
           
OFPBIC_BAD_TABLE_ID
           
OFPBIC_BAD_VENDOR
           
OFPBIC_EPERM
           
OFPBIC_UNKNOWN_INST
           
OFPBIC_UNSUP_INST
           
OFPBIC_UNSUP_METADATA
           
OFPBIC_UNSUP_METADATA_MASK
           
 
Method Summary
static OFError.OFBadInstructionCode valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static OFError.OFBadInstructionCode[] 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

OFPBIC_UNKNOWN_INST

public static final OFError.OFBadInstructionCode OFPBIC_UNKNOWN_INST

OFPBIC_UNSUP_INST

public static final OFError.OFBadInstructionCode OFPBIC_UNSUP_INST

OFPBIC_BAD_TABLE_ID

public static final OFError.OFBadInstructionCode OFPBIC_BAD_TABLE_ID

OFPBIC_UNSUP_METADATA

public static final OFError.OFBadInstructionCode OFPBIC_UNSUP_METADATA

OFPBIC_UNSUP_METADATA_MASK

public static final OFError.OFBadInstructionCode OFPBIC_UNSUP_METADATA_MASK

OFPBIC_BAD_VENDOR

public static final OFError.OFBadInstructionCode OFPBIC_BAD_VENDOR

OFPBIC_BAD_EXP_TYPE

public static final OFError.OFBadInstructionCode OFPBIC_BAD_EXP_TYPE

OFPBIC_BAD_LEN

public static final OFError.OFBadInstructionCode OFPBIC_BAD_LEN

OFPBIC_EPERM

public static final OFError.OFBadInstructionCode OFPBIC_EPERM
Method Detail

values

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