public enum EventMessage extends Enum<EventMessage>
Enum Constant and Description |
---|
ASYNC_FIRE |
ASYNC_OBSERVER_FAILURE |
ASYNC_TX_FIRE |
INVALID_DISPOSES_PARAMETER |
INVALID_INITIALIZER |
INVALID_PRODUCER |
INVALID_SCOPED_CONDITIONAL_OBSERVER |
MULTIPLE_EVENT_PARAMETERS |
PROXY_REQUIRED |
Modifier and Type | Method and Description |
---|---|
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.
|
public static final EventMessage ASYNC_FIRE
public static final EventMessage ASYNC_OBSERVER_FAILURE
public static final EventMessage ASYNC_TX_FIRE
public static final EventMessage PROXY_REQUIRED
public static final EventMessage INVALID_SCOPED_CONDITIONAL_OBSERVER
public static final EventMessage MULTIPLE_EVENT_PARAMETERS
public static final EventMessage INVALID_DISPOSES_PARAMETER
public static final EventMessage INVALID_PRODUCER
public static final EventMessage INVALID_INITIALIZER
public static EventMessage[] values()
for (EventMessage c : EventMessage.values()) System.out.println(c);
public static EventMessage 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 © 2012 Seam Framework. All Rights Reserved.