org.openflow.protocol
Enum OFError.OFGroupModFailedCode

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

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


Enum Constant Summary
OFPGMFC_BAD_BUCKET
           
OFPGMFC_BAD_COMMAND
           
OFPGMFC_BAD_TYPE
           
OFPGMFC_BAD_WATCH
           
OFPGMFC_CHAINED_GROUP
           
OFPGMFC_CHAINING_UNSUPPORTED
           
OFPGMFC_EPERM
           
OFPGMFC_GROUP_EXISTS
           
OFPGMFC_INVALID_GROUP
           
OFPGMFC_LOOP
           
OFPGMFC_OUT_OF_BUCKETS
           
OFPGMFC_OUT_OF_GROUPS
           
OFPGMFC_UNKNOWN_GROUP
           
OFPGMFC_WATCH_UNSUPPORTED
           
OFPGMFC_WEIGHT_UNSUPPORTED
           
 
Method Summary
static OFError.OFGroupModFailedCode valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static OFError.OFGroupModFailedCode[] 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

OFPGMFC_GROUP_EXISTS

public static final OFError.OFGroupModFailedCode OFPGMFC_GROUP_EXISTS

OFPGMFC_INVALID_GROUP

public static final OFError.OFGroupModFailedCode OFPGMFC_INVALID_GROUP

OFPGMFC_WEIGHT_UNSUPPORTED

public static final OFError.OFGroupModFailedCode OFPGMFC_WEIGHT_UNSUPPORTED

OFPGMFC_OUT_OF_GROUPS

public static final OFError.OFGroupModFailedCode OFPGMFC_OUT_OF_GROUPS

OFPGMFC_OUT_OF_BUCKETS

public static final OFError.OFGroupModFailedCode OFPGMFC_OUT_OF_BUCKETS

OFPGMFC_CHAINING_UNSUPPORTED

public static final OFError.OFGroupModFailedCode OFPGMFC_CHAINING_UNSUPPORTED

OFPGMFC_WATCH_UNSUPPORTED

public static final OFError.OFGroupModFailedCode OFPGMFC_WATCH_UNSUPPORTED

OFPGMFC_LOOP

public static final OFError.OFGroupModFailedCode OFPGMFC_LOOP

OFPGMFC_UNKNOWN_GROUP

public static final OFError.OFGroupModFailedCode OFPGMFC_UNKNOWN_GROUP

OFPGMFC_CHAINED_GROUP

public static final OFError.OFGroupModFailedCode OFPGMFC_CHAINED_GROUP

OFPGMFC_BAD_TYPE

public static final OFError.OFGroupModFailedCode OFPGMFC_BAD_TYPE

OFPGMFC_BAD_COMMAND

public static final OFError.OFGroupModFailedCode OFPGMFC_BAD_COMMAND

OFPGMFC_BAD_BUCKET

public static final OFError.OFGroupModFailedCode OFPGMFC_BAD_BUCKET

OFPGMFC_BAD_WATCH

public static final OFError.OFGroupModFailedCode OFPGMFC_BAD_WATCH

OFPGMFC_EPERM

public static final OFError.OFGroupModFailedCode OFPGMFC_EPERM
Method Detail

values

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