org.jboss.weld.logging.messages
Enum ContextMessage
java.lang.Object
java.lang.Enum<ContextMessage>
org.jboss.weld.logging.messages.ContextMessage
- All Implemented Interfaces:
- Serializable, Comparable<ContextMessage>
public enum ContextMessage
- extends Enum<ContextMessage>
Method Summary |
static ContextMessage |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static ContextMessage[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared. |
CONTEXTUAL_INSTANCE_FOUND
public static final ContextMessage CONTEXTUAL_INSTANCE_FOUND
CONTEXT_CLEARED
public static final ContextMessage CONTEXT_CLEARED
CONTEXTUAL_INSTANCE_ADDED
public static final ContextMessage CONTEXTUAL_INSTANCE_ADDED
CONTEXTUAL_INSTANCE_REMOVED
public static final ContextMessage CONTEXTUAL_INSTANCE_REMOVED
SESSION_RESTORED
public static final ContextMessage SESSION_RESTORED
SESSION_ENDED
public static final ContextMessage SESSION_ENDED
REQUEST_STARTED
public static final ContextMessage REQUEST_STARTED
REQUEST_ENDED
public static final ContextMessage REQUEST_ENDED
APPLICATION_STARTED
public static final ContextMessage APPLICATION_STARTED
APPLICATION_ENDED
public static final ContextMessage APPLICATION_ENDED
DEPENDENT_INSTANCE_ATTACHED
public static final ContextMessage DEPENDENT_INSTANCE_ATTACHED
DELIMITER_IN_PREFIX
public static final ContextMessage DELIMITER_IN_PREFIX
CONTEXTUAL_IS_NULL
public static final ContextMessage CONTEXTUAL_IS_NULL
NO_BEAN_STORE_AVAILABLE
public static final ContextMessage NO_BEAN_STORE_AVAILABLE
CONVERSATION_RESTORED
public static final ContextMessage CONVERSATION_RESTORED
values
public static ContextMessage[] 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 (ContextMessage c : ContextMessage.values())
System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in
the order they are declared
valueOf
public static ContextMessage 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.