org.jboss.weld.logging.messages
Enum EventMessage
java.lang.Object
java.lang.Enum<EventMessage>
org.jboss.weld.logging.messages.EventMessage
- All Implemented Interfaces:
- Serializable, Comparable<EventMessage>
public enum EventMessage
- extends Enum<EventMessage>
Method Summary |
static EventMessage |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static EventMessage[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared. |
ASYNC_FIRE
public static final EventMessage ASYNC_FIRE
ASYNC_OBSERVER_FAILURE
public static final EventMessage ASYNC_OBSERVER_FAILURE
ASYNC_TX_FIRE
public static final EventMessage ASYNC_TX_FIRE
PROXY_REQUIRED
public static final EventMessage PROXY_REQUIRED
INVALID_SCOPED_CONDITIONAL_OBSERVER
public static final EventMessage INVALID_SCOPED_CONDITIONAL_OBSERVER
MULTIPLE_EVENT_PARAMETERS
public static final EventMessage MULTIPLE_EVENT_PARAMETERS
INVALID_DISPOSES_PARAMETER
public static final EventMessage INVALID_DISPOSES_PARAMETER
INVALID_PRODUCER
public static final EventMessage INVALID_PRODUCER
INVALID_INITIALIZER
public static final EventMessage INVALID_INITIALIZER
values
public static EventMessage[] 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 (EventMessage c : EventMessage.values())
System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in
the order they are declared
valueOf
public static EventMessage 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.