public enum EventMessage extends Enum<EventMessage>
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 final EventMessage INVALID_INJECTION_POINT
public static final EventMessage INVALID_WITH_ANNOTATIONS
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 © 2013 Seam Framework. All Rights Reserved.