net.officefloor.plugin.servlet.webxml.model
Enum WebAppModel.WebAppEvent

java.lang.Object
  extended by java.lang.Enum<WebAppModel.WebAppEvent>
      extended by net.officefloor.plugin.servlet.webxml.model.WebAppModel.WebAppEvent
All Implemented Interfaces:
Serializable, Comparable<WebAppModel.WebAppEvent>
Enclosing class:
WebAppModel

public static enum WebAppModel.WebAppEvent
extends Enum<WebAppModel.WebAppEvent>


Enum Constant Summary
ADD_CONTEXT_PARAM
           
ADD_FILTER
           
ADD_FILTER_MAPPING
           
ADD_MIME_MAPPING
           
ADD_SERVLET
           
ADD_SERVLET_MAPPING
           
CHANGE_DISPLAY_NAME
           
CHANGE_VERSION
           
REMOVE_CONTEXT_PARAM
           
REMOVE_FILTER
           
REMOVE_FILTER_MAPPING
           
REMOVE_MIME_MAPPING
           
REMOVE_SERVLET
           
REMOVE_SERVLET_MAPPING
           
 
Method Summary
static WebAppModel.WebAppEvent valueOf(String name)
          Returns the enum constant of this type with the specified name.
static WebAppModel.WebAppEvent[] 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

CHANGE_VERSION

public static final WebAppModel.WebAppEvent CHANGE_VERSION

CHANGE_DISPLAY_NAME

public static final WebAppModel.WebAppEvent CHANGE_DISPLAY_NAME

ADD_CONTEXT_PARAM

public static final WebAppModel.WebAppEvent ADD_CONTEXT_PARAM

REMOVE_CONTEXT_PARAM

public static final WebAppModel.WebAppEvent REMOVE_CONTEXT_PARAM

ADD_MIME_MAPPING

public static final WebAppModel.WebAppEvent ADD_MIME_MAPPING

REMOVE_MIME_MAPPING

public static final WebAppModel.WebAppEvent REMOVE_MIME_MAPPING

ADD_SERVLET

public static final WebAppModel.WebAppEvent ADD_SERVLET

REMOVE_SERVLET

public static final WebAppModel.WebAppEvent REMOVE_SERVLET

ADD_SERVLET_MAPPING

public static final WebAppModel.WebAppEvent ADD_SERVLET_MAPPING

REMOVE_SERVLET_MAPPING

public static final WebAppModel.WebAppEvent REMOVE_SERVLET_MAPPING

ADD_FILTER

public static final WebAppModel.WebAppEvent ADD_FILTER

REMOVE_FILTER

public static final WebAppModel.WebAppEvent REMOVE_FILTER

ADD_FILTER_MAPPING

public static final WebAppModel.WebAppEvent ADD_FILTER_MAPPING

REMOVE_FILTER_MAPPING

public static final WebAppModel.WebAppEvent REMOVE_FILTER_MAPPING
Method Detail

values

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

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

valueOf

public static WebAppModel.WebAppEvent 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.