net.officefloor.plugin.servlet.container.source
Enum HttpServletTask.DependencyKeys

java.lang.Object
  extended by java.lang.Enum<HttpServletTask.DependencyKeys>
      extended by net.officefloor.plugin.servlet.container.source.HttpServletTask.DependencyKeys
All Implemented Interfaces:
Serializable, Comparable<HttpServletTask.DependencyKeys>
Enclosing class:
HttpServletTask

public static enum HttpServletTask.DependencyKeys
extends Enum<HttpServletTask.DependencyKeys>

Keys for the dependencies.


Enum Constant Summary
HTTP_CONNECTION
           
HTTP_SECURITY
           
HTTP_SESSION
           
OFFICE_SERVLET_CONTEXT
           
REQUEST_ATTRIBUTES
           
SERVICER_MAPPING
           
 
Method Summary
static HttpServletTask.DependencyKeys valueOf(String name)
          Returns the enum constant of this type with the specified name.
static HttpServletTask.DependencyKeys[] 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

SERVICER_MAPPING

public static final HttpServletTask.DependencyKeys SERVICER_MAPPING

OFFICE_SERVLET_CONTEXT

public static final HttpServletTask.DependencyKeys OFFICE_SERVLET_CONTEXT

HTTP_CONNECTION

public static final HttpServletTask.DependencyKeys HTTP_CONNECTION

REQUEST_ATTRIBUTES

public static final HttpServletTask.DependencyKeys REQUEST_ATTRIBUTES

HTTP_SESSION

public static final HttpServletTask.DependencyKeys HTTP_SESSION

HTTP_SECURITY

public static final HttpServletTask.DependencyKeys HTTP_SECURITY
Method Detail

values

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

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

valueOf

public static HttpServletTask.DependencyKeys valueOf(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:
IllegalArgumentException - if this enum type has no constant with the specified name
NullPointerException - if the argument is null


Copyright © 2005-2011. All Rights Reserved.