org.jboss.weld.logging.messages
Enum ServletMessage

java.lang.Object
  extended by java.lang.Enum<ServletMessage>
      extended by org.jboss.weld.logging.messages.ServletMessage
All Implemented Interfaces:
Serializable, Comparable<ServletMessage>

public enum ServletMessage
extends Enum<ServletMessage>


Enum Constant Summary
BEAN_DEPLOYMENT_ARCHIVE_MISSING
           
BEAN_MANAGER_FOR_ARCHIVE_NOT_FOUND
           
BEAN_MANAGER_NOT_FOUND
           
CONTEXT_NULL
           
ILLEGAL_USE_OF_WELD_LISTENER
           
NOT_STARTING
           
ONLY_HTTP_SERVLET_LIFECYCLE_DEFINED
           
REQUEST_DESTROYED
           
REQUEST_INITIALIZED
           
REQUEST_SCOPE_BEAN_STORE_MISSING
           
 
Method Summary
static ServletMessage valueOf(String name)
          Returns the enum constant of this type with the specified name.
static ServletMessage[] 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

NOT_STARTING

public static final ServletMessage NOT_STARTING

CONTEXT_NULL

public static final ServletMessage CONTEXT_NULL

BEAN_MANAGER_NOT_FOUND

public static final ServletMessage BEAN_MANAGER_NOT_FOUND

REQUEST_SCOPE_BEAN_STORE_MISSING

public static final ServletMessage REQUEST_SCOPE_BEAN_STORE_MISSING

BEAN_DEPLOYMENT_ARCHIVE_MISSING

public static final ServletMessage BEAN_DEPLOYMENT_ARCHIVE_MISSING

BEAN_MANAGER_FOR_ARCHIVE_NOT_FOUND

public static final ServletMessage BEAN_MANAGER_FOR_ARCHIVE_NOT_FOUND

ILLEGAL_USE_OF_WELD_LISTENER

public static final ServletMessage ILLEGAL_USE_OF_WELD_LISTENER

ONLY_HTTP_SERVLET_LIFECYCLE_DEFINED

public static final ServletMessage ONLY_HTTP_SERVLET_LIFECYCLE_DEFINED

REQUEST_INITIALIZED

public static final ServletMessage REQUEST_INITIALIZED

REQUEST_DESTROYED

public static final ServletMessage REQUEST_DESTROYED
Method Detail

values

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

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

valueOf

public static ServletMessage 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 © 2013 Seam Framework. All Rights Reserved.