org.jboss.weld.logging.messages
Enum BootstrapMessage

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

public enum BootstrapMessage
extends Enum<BootstrapMessage>


Enum Constant Summary
ANNOTATION_TYPE_NULL
           
BEAN_IS_BOTH_INTERCEPTOR_AND_DECORATOR
           
BEAN_STORE_MISSING
           
BEAN_TYPE_NOT_EJB
           
DEPLOYMENT_ARCHIVE_NULL
           
DEPLOYMENT_REQUIRED
           
ENABLED_ALTERNATIVES
           
ENABLED_DECORATORS
           
ENABLED_INTERCEPTORS
           
FOUND_BEAN
           
FOUND_DECORATOR
           
FOUND_INTERCEPTOR
           
FOUND_OBSERVER_METHOD
           
IGNORING_CLASS_DUE_TO_LOADING_ERROR
           
JTA_UNAVAILABLE
           
MANAGER_NOT_INITIALIZED
           
PASSIVATING_NON_NORMAL_SCOPE_ILLEGAL
           
UNSPECIFIED_REQUIRED_SERVICE
           
VALIDATING_BEANS
           
 
Method Summary
static BootstrapMessage valueOf(String name)
          Returns the enum constant of this type with the specified name.
static BootstrapMessage[] 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

VALIDATING_BEANS

public static final BootstrapMessage VALIDATING_BEANS

JTA_UNAVAILABLE

public static final BootstrapMessage JTA_UNAVAILABLE

ENABLED_ALTERNATIVES

public static final BootstrapMessage ENABLED_ALTERNATIVES

ENABLED_DECORATORS

public static final BootstrapMessage ENABLED_DECORATORS

ENABLED_INTERCEPTORS

public static final BootstrapMessage ENABLED_INTERCEPTORS

FOUND_BEAN

public static final BootstrapMessage FOUND_BEAN

FOUND_INTERCEPTOR

public static final BootstrapMessage FOUND_INTERCEPTOR

FOUND_DECORATOR

public static final BootstrapMessage FOUND_DECORATOR

FOUND_OBSERVER_METHOD

public static final BootstrapMessage FOUND_OBSERVER_METHOD

ANNOTATION_TYPE_NULL

public static final BootstrapMessage ANNOTATION_TYPE_NULL

BEAN_TYPE_NOT_EJB

public static final BootstrapMessage BEAN_TYPE_NOT_EJB

BEAN_IS_BOTH_INTERCEPTOR_AND_DECORATOR

public static final BootstrapMessage BEAN_IS_BOTH_INTERCEPTOR_AND_DECORATOR

DEPLOYMENT_ARCHIVE_NULL

public static final BootstrapMessage DEPLOYMENT_ARCHIVE_NULL

DEPLOYMENT_REQUIRED

public static final BootstrapMessage DEPLOYMENT_REQUIRED

BEAN_STORE_MISSING

public static final BootstrapMessage BEAN_STORE_MISSING

MANAGER_NOT_INITIALIZED

public static final BootstrapMessage MANAGER_NOT_INITIALIZED

UNSPECIFIED_REQUIRED_SERVICE

public static final BootstrapMessage UNSPECIFIED_REQUIRED_SERVICE

PASSIVATING_NON_NORMAL_SCOPE_ILLEGAL

public static final BootstrapMessage PASSIVATING_NON_NORMAL_SCOPE_ILLEGAL

IGNORING_CLASS_DUE_TO_LOADING_ERROR

public static final BootstrapMessage IGNORING_CLASS_DUE_TO_LOADING_ERROR
Method Detail

values

public static BootstrapMessage[] 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 (BootstrapMessage c : BootstrapMessage.values())
    System.out.println(c);

Returns:
an array containing the constants of this enum type, in the order they are declared

valueOf

public static BootstrapMessage 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.