org.jboss.weld.logging.messages
Enum BeanManagerMessage

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

public enum BeanManagerMessage
extends Enum<BeanManagerMessage>


Enum Constant Summary
AMBIGUOUS_BEANS_FOR_DEPENDENCY
           
CANNOT_LOCATE_BEAN_MANAGER
           
CONTEXT_NOT_ACTIVE
           
DUPLICATE_ACTIVE_CONTEXTS
           
DUPLICATE_INTERCEPTOR_BINDING
           
DUPLICATE_QUALIFIERS
           
ERROR_INVOKING_POST_CONSTRUCT
           
ERROR_INVOKING_PRE_DESTROY
           
INJECTION_ON_NON_CONTEXTUAL
           
INTERCEPTOR_BINDINGS_EMPTY
           
INTERCEPTOR_RESOLUTION_WITH_NONBINDING_TYPE
           
INVALID_QUALIFIER
           
MISSING_BEAN_CONSTRUCTOR_FOUND
           
NO_DECORATOR_TYPES
           
NON_NORMAL_SCOPE
           
NOT_INTERCEPTOR_BINDING_TYPE
           
NOT_PROXYABLE
           
NOT_STEREOTYPE
           
NULL_BEAN_ARGUMENT
           
NULL_BEAN_MANAGER_ID
           
NULL_BEAN_TYPE_ARGUMENT
           
NULL_CREATIONAL_CONTEXT_ARGUMENT
           
SPECIFIED_TYPE_NOT_BEAN_TYPE
           
TOO_MANY_ACTIVITIES
           
UNPROXYABLE_RESOLUTION
           
UNRESOLVABLE_ELEMENT
           
UNRESOLVABLE_TYPE
           
 
Method Summary
static BeanManagerMessage valueOf(String name)
          Returns the enum constant of this type with the specified name.
static BeanManagerMessage[] 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

CANNOT_LOCATE_BEAN_MANAGER

public static final BeanManagerMessage CANNOT_LOCATE_BEAN_MANAGER

INVALID_QUALIFIER

public static final BeanManagerMessage INVALID_QUALIFIER

DUPLICATE_QUALIFIERS

public static final BeanManagerMessage DUPLICATE_QUALIFIERS

CONTEXT_NOT_ACTIVE

public static final BeanManagerMessage CONTEXT_NOT_ACTIVE

DUPLICATE_ACTIVE_CONTEXTS

public static final BeanManagerMessage DUPLICATE_ACTIVE_CONTEXTS

SPECIFIED_TYPE_NOT_BEAN_TYPE

public static final BeanManagerMessage SPECIFIED_TYPE_NOT_BEAN_TYPE

UNPROXYABLE_RESOLUTION

public static final BeanManagerMessage UNPROXYABLE_RESOLUTION

UNRESOLVABLE_TYPE

public static final BeanManagerMessage UNRESOLVABLE_TYPE

UNRESOLVABLE_ELEMENT

public static final BeanManagerMessage UNRESOLVABLE_ELEMENT

NOT_PROXYABLE

public static final BeanManagerMessage NOT_PROXYABLE

NO_DECORATOR_TYPES

public static final BeanManagerMessage NO_DECORATOR_TYPES

INTERCEPTOR_BINDINGS_EMPTY

public static final BeanManagerMessage INTERCEPTOR_BINDINGS_EMPTY

DUPLICATE_INTERCEPTOR_BINDING

public static final BeanManagerMessage DUPLICATE_INTERCEPTOR_BINDING

INTERCEPTOR_RESOLUTION_WITH_NONBINDING_TYPE

public static final BeanManagerMessage INTERCEPTOR_RESOLUTION_WITH_NONBINDING_TYPE

NON_NORMAL_SCOPE

public static final BeanManagerMessage NON_NORMAL_SCOPE

TOO_MANY_ACTIVITIES

public static final BeanManagerMessage TOO_MANY_ACTIVITIES

NOT_INTERCEPTOR_BINDING_TYPE

public static final BeanManagerMessage NOT_INTERCEPTOR_BINDING_TYPE

NOT_STEREOTYPE

public static final BeanManagerMessage NOT_STEREOTYPE

AMBIGUOUS_BEANS_FOR_DEPENDENCY

public static final BeanManagerMessage AMBIGUOUS_BEANS_FOR_DEPENDENCY

NULL_BEAN_MANAGER_ID

public static final BeanManagerMessage NULL_BEAN_MANAGER_ID

INJECTION_ON_NON_CONTEXTUAL

public static final BeanManagerMessage INJECTION_ON_NON_CONTEXTUAL

MISSING_BEAN_CONSTRUCTOR_FOUND

public static final BeanManagerMessage MISSING_BEAN_CONSTRUCTOR_FOUND

ERROR_INVOKING_POST_CONSTRUCT

public static final BeanManagerMessage ERROR_INVOKING_POST_CONSTRUCT

ERROR_INVOKING_PRE_DESTROY

public static final BeanManagerMessage ERROR_INVOKING_PRE_DESTROY

NULL_BEAN_ARGUMENT

public static final BeanManagerMessage NULL_BEAN_ARGUMENT

NULL_BEAN_TYPE_ARGUMENT

public static final BeanManagerMessage NULL_BEAN_TYPE_ARGUMENT

NULL_CREATIONAL_CONTEXT_ARGUMENT

public static final BeanManagerMessage NULL_CREATIONAL_CONTEXT_ARGUMENT
Method Detail

values

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

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

valueOf

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