org.openflow.protocol
Enum OFError.OFMeterModFailedCode

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

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


Enum Constant Summary
OFPMMFC_BAD_BAND
           
OFPMMFC_BAD_BAND_VALUE
           
OFPMMFC_BAD_BURST
           
OFPMMFC_BAD_COMMAND
           
OFPMMFC_BAD_FLAGS
           
OFPMMFC_BAD_RATE
           
OFPMMFC_INVALID_METER
           
OFPMMFC_METER_EXISTS
           
OFPMMFC_OUT_OF_BANDS
           
OFPMMFC_OUT_OF_METERS
           
OFPMMFC_UNKNOWN
           
OFPMMFC_UNKNOWN_METER
           
 
Method Summary
static OFError.OFMeterModFailedCode valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static OFError.OFMeterModFailedCode[] 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

OFPMMFC_UNKNOWN

public static final OFError.OFMeterModFailedCode OFPMMFC_UNKNOWN

OFPMMFC_METER_EXISTS

public static final OFError.OFMeterModFailedCode OFPMMFC_METER_EXISTS

OFPMMFC_INVALID_METER

public static final OFError.OFMeterModFailedCode OFPMMFC_INVALID_METER

OFPMMFC_UNKNOWN_METER

public static final OFError.OFMeterModFailedCode OFPMMFC_UNKNOWN_METER

OFPMMFC_BAD_COMMAND

public static final OFError.OFMeterModFailedCode OFPMMFC_BAD_COMMAND

OFPMMFC_BAD_FLAGS

public static final OFError.OFMeterModFailedCode OFPMMFC_BAD_FLAGS

OFPMMFC_BAD_RATE

public static final OFError.OFMeterModFailedCode OFPMMFC_BAD_RATE

OFPMMFC_BAD_BURST

public static final OFError.OFMeterModFailedCode OFPMMFC_BAD_BURST

OFPMMFC_BAD_BAND

public static final OFError.OFMeterModFailedCode OFPMMFC_BAD_BAND

OFPMMFC_BAD_BAND_VALUE

public static final OFError.OFMeterModFailedCode OFPMMFC_BAD_BAND_VALUE

OFPMMFC_OUT_OF_METERS

public static final OFError.OFMeterModFailedCode OFPMMFC_OUT_OF_METERS

OFPMMFC_OUT_OF_BANDS

public static final OFError.OFMeterModFailedCode OFPMMFC_OUT_OF_BANDS
Method Detail

values

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