public enum ServletMessage extends Enum<ServletMessage>
Modifier and Type | Method and Description |
---|---|
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.
|
public static final ServletMessage NOT_STARTING
public static final ServletMessage CONTEXT_NULL
public static final ServletMessage BEAN_MANAGER_NOT_FOUND
public static final ServletMessage REQUEST_SCOPE_BEAN_STORE_MISSING
public static final ServletMessage BEAN_DEPLOYMENT_ARCHIVE_MISSING
public static final ServletMessage BEAN_MANAGER_FOR_ARCHIVE_NOT_FOUND
public static final ServletMessage ILLEGAL_USE_OF_WELD_LISTENER
public static final ServletMessage ONLY_HTTP_SERVLET_LIFECYCLE_DEFINED
public static final ServletMessage REQUEST_INITIALIZED
public static final ServletMessage REQUEST_DESTROYED
public static final ServletMessage CANNOT_INJECT_OBJECT_OUTSIDE_OF_SERVLET_REQUEST
public static ServletMessage[] values()
for (ServletMessage c : ServletMessage.values()) System.out.println(c);
public static ServletMessage valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant
with the specified nameNullPointerException
- if the argument is nullCopyright © 2013 Seam Framework. All Rights Reserved.