net.floodlightcontroller.debugevent.web
Enum DebugEventResource.Option

java.lang.Object
  extended by java.lang.Enum<DebugEventResource.Option>
      extended by net.floodlightcontroller.debugevent.web.DebugEventResource.Option
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<DebugEventResource.Option>
Enclosing class:
DebugEventResource

public static enum DebugEventResource.Option
extends java.lang.Enum<DebugEventResource.Option>


Enum Constant Summary
ALL
           
ERROR_BAD_MODULE_EVENT_NAME
           
ERROR_BAD_MODULE_NAME
           
ERROR_BAD_PARAM
           
ONE_MODULE
           
ONE_MODULE_EVENT
           
 
Method Summary
static DebugEventResource.Option valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static DebugEventResource.Option[] 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

ALL

public static final DebugEventResource.Option ALL

ONE_MODULE

public static final DebugEventResource.Option ONE_MODULE

ONE_MODULE_EVENT

public static final DebugEventResource.Option ONE_MODULE_EVENT

ERROR_BAD_MODULE_NAME

public static final DebugEventResource.Option ERROR_BAD_MODULE_NAME

ERROR_BAD_PARAM

public static final DebugEventResource.Option ERROR_BAD_PARAM

ERROR_BAD_MODULE_EVENT_NAME

public static final DebugEventResource.Option ERROR_BAD_MODULE_EVENT_NAME
Method Detail

values

public static DebugEventResource.Option[] 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 (DebugEventResource.Option c : DebugEventResource.Option.values())
    System.out.println(c);

Returns:
an array containing the constants of this enum type, in the order they are declared

valueOf

public static DebugEventResource.Option 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