org.jboss.weld.logging.messages
Enum ServletMessage
java.lang.Object
java.lang.Enum<ServletMessage>
org.jboss.weld.logging.messages.ServletMessage
- All Implemented Interfaces:
- Serializable, Comparable<ServletMessage>
public enum ServletMessage
- extends Enum<ServletMessage>
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. |
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
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.