org.jboss.weld.logging.messages
Enum UtilMessage

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

public enum UtilMessage
extends Enum<UtilMessage>


Enum Constant Summary
ACCESS_ERROR_ON_CONSTRUCTOR
           
ACCESS_ERROR_ON_FIELD
           
AMBIGUOUS_CONSTRUCTOR
           
ANNOTATION_NOT_QUALIFIER
           
ANNOTATION_VALUES_INACCESSIBLE
           
CANNOT_PROXY_NON_CLASS_TYPE
           
CLASS_LOADING_ERROR
           
CLASS_NOT_ENUM
           
COULD_NOT_READ_SERVICES_FILE
           
COULD_NOT_READ_SERVICES_LIST
           
DECLARED_EXTENSION_DOES_NOT_IMPLEMENT_EXTENSION
           
ERROR_INVOKING_METHOD
           
EVENT_TYPE_NOT_ALLOWED
           
EXTENSION_CLASS_NOT_FOUND
           
INITIALIZER_CANNOT_BE_DISPOSAL_METHOD
           
INITIALIZER_CANNOT_BE_PRODUCER
           
INITIALIZER_METHOD_IS_GENERIC
           
INSTANCE_NOT_A_PROXY
           
INVALID_QUANTITY_INJECTABLE_FIELDS_AND_INITIALIZER_METHODS
           
NO_SUCH_METHOD
           
QUALIFIER_ON_FINAL_FIELD
           
REDUNDANT_QUALIFIER
           
SECURITY_EXCEPTION_SCANNING
           
SERVICE_LOADER_LOADING_ERROR
           
TOO_MANY_INITIALIZERS
           
TOO_MANY_POST_CONSTRUCT_METHODS
           
TOO_MANY_PRE_DESTROY_METHODS
           
TYPE_PARAMETER_NOT_ALLOWED_IN_EVENT_TYPE
           
UNABLE_TO_FIND_BEAN_DEPLOYMENT_ARCHIVE
           
UNABLE_TO_FIND_CONSTRUCTOR
           
XML_DOM_READONLY
           
 
Method Summary
static UtilMessage valueOf(String name)
          Returns the enum constant of this type with the specified name.
static UtilMessage[] 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

SERVICE_LOADER_LOADING_ERROR

public static final UtilMessage SERVICE_LOADER_LOADING_ERROR

SECURITY_EXCEPTION_SCANNING

public static final UtilMessage SECURITY_EXCEPTION_SCANNING

XML_DOM_READONLY

public static final UtilMessage XML_DOM_READONLY

DECLARED_EXTENSION_DOES_NOT_IMPLEMENT_EXTENSION

public static final UtilMessage DECLARED_EXTENSION_DOES_NOT_IMPLEMENT_EXTENSION

CLASS_NOT_ENUM

public static final UtilMessage CLASS_NOT_ENUM

TOO_MANY_POST_CONSTRUCT_METHODS

public static final UtilMessage TOO_MANY_POST_CONSTRUCT_METHODS

TOO_MANY_PRE_DESTROY_METHODS

public static final UtilMessage TOO_MANY_PRE_DESTROY_METHODS

INITIALIZER_CANNOT_BE_PRODUCER

public static final UtilMessage INITIALIZER_CANNOT_BE_PRODUCER

INITIALIZER_CANNOT_BE_DISPOSAL_METHOD

public static final UtilMessage INITIALIZER_CANNOT_BE_DISPOSAL_METHOD

QUALIFIER_ON_FINAL_FIELD

public static final UtilMessage QUALIFIER_ON_FINAL_FIELD

TOO_MANY_INITIALIZERS

public static final UtilMessage TOO_MANY_INITIALIZERS

AMBIGUOUS_CONSTRUCTOR

public static final UtilMessage AMBIGUOUS_CONSTRUCTOR

INVALID_QUANTITY_INJECTABLE_FIELDS_AND_INITIALIZER_METHODS

public static final UtilMessage INVALID_QUANTITY_INJECTABLE_FIELDS_AND_INITIALIZER_METHODS

ANNOTATION_NOT_QUALIFIER

public static final UtilMessage ANNOTATION_NOT_QUALIFIER

REDUNDANT_QUALIFIER

public static final UtilMessage REDUNDANT_QUALIFIER

UNABLE_TO_FIND_CONSTRUCTOR

public static final UtilMessage UNABLE_TO_FIND_CONSTRUCTOR

UNABLE_TO_FIND_BEAN_DEPLOYMENT_ARCHIVE

public static final UtilMessage UNABLE_TO_FIND_BEAN_DEPLOYMENT_ARCHIVE

EVENT_TYPE_NOT_ALLOWED

public static final UtilMessage EVENT_TYPE_NOT_ALLOWED

TYPE_PARAMETER_NOT_ALLOWED_IN_EVENT_TYPE

public static final UtilMessage TYPE_PARAMETER_NOT_ALLOWED_IN_EVENT_TYPE

CANNOT_PROXY_NON_CLASS_TYPE

public static final UtilMessage CANNOT_PROXY_NON_CLASS_TYPE

INSTANCE_NOT_A_PROXY

public static final UtilMessage INSTANCE_NOT_A_PROXY

ACCESS_ERROR_ON_CONSTRUCTOR

public static final UtilMessage ACCESS_ERROR_ON_CONSTRUCTOR

ERROR_INVOKING_METHOD

public static final UtilMessage ERROR_INVOKING_METHOD

ACCESS_ERROR_ON_FIELD

public static final UtilMessage ACCESS_ERROR_ON_FIELD

NO_SUCH_METHOD

public static final UtilMessage NO_SUCH_METHOD

ANNOTATION_VALUES_INACCESSIBLE

public static final UtilMessage ANNOTATION_VALUES_INACCESSIBLE

INITIALIZER_METHOD_IS_GENERIC

public static final UtilMessage INITIALIZER_METHOD_IS_GENERIC

COULD_NOT_READ_SERVICES_LIST

public static final UtilMessage COULD_NOT_READ_SERVICES_LIST

COULD_NOT_READ_SERVICES_FILE

public static final UtilMessage COULD_NOT_READ_SERVICES_FILE

EXTENSION_CLASS_NOT_FOUND

public static final UtilMessage EXTENSION_CLASS_NOT_FOUND

CLASS_LOADING_ERROR

public static final UtilMessage CLASS_LOADING_ERROR
Method Detail

values

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

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

valueOf

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