org.jboss.weld.logging.messages
Enum EventMessage

java.lang.Object
  extended by java.lang.Enum<EventMessage>
      extended by org.jboss.weld.logging.messages.EventMessage
All Implemented Interfaces:
Serializable, Comparable<EventMessage>

public enum EventMessage
extends Enum<EventMessage>


Enum Constant Summary
ASYNC_FIRE
           
ASYNC_OBSERVER_FAILURE
           
ASYNC_TX_FIRE
           
INVALID_DISPOSES_PARAMETER
           
INVALID_INITIALIZER
           
INVALID_PRODUCER
           
INVALID_SCOPED_CONDITIONAL_OBSERVER
           
MULTIPLE_EVENT_PARAMETERS
           
PROXY_REQUIRED
           
 
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.
 
Methods inherited from class java.lang.Enum
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

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
Method Detail

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.