org.jboss.weld.logging.messages
Enum ReflectionMessage

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

public enum ReflectionMessage
extends Enum<ReflectionMessage>


Enum Constant Summary
ANNOTATION_MAP_NULL
           
CLEANING_JAVASSIST_PROXY_CLASS
           
DECLARED_ANNOTATION_MAP_NULL
           
INCORRECT_NUMBER_OF_ANNOTATED_PARAMETERS_CONSTRUCTOR
           
INCORRECT_NUMBER_OF_ANNOTATED_PARAMETERS_METHOD
           
METHODHANDLER_SET_FAILED
           
MISSING_RETENTION
           
MISSING_TARGET
           
MISSING_TARGET_METHOD_FIELD_PARAMETER_TYPE
           
MISSING_TARGET_METHOD_FIELD_TYPE
           
MISSING_TARGET_METHOD_FIELD_TYPE_PARAMETER_OR_TARGET_METHOD_TYPE_OR_TARGET_METHOD_OR_TARGET_TYPE_OR_TARGET_FIELD
           
MISSING_TARGET_TYPE_METHOD_OR_TARGET_TYPE
           
REFLECTIONFACTORY_INSTANTIATION_FAILED
           
TARGET_TYPE_METHOD_INHERITS_FROM_TARGET_TYPE
           
UNABLE_TO_GET_CONSTRUCTOR_ON_DESERIALIZATION
           
UNABLE_TO_GET_FIELD_ON_DESERIALIZATION
           
UNABLE_TO_GET_METHOD_ON_DESERIALIZATION
           
UNABLE_TO_GET_PARAMETER_NAME
           
UNABLE_TO_GET_PARAMETER_ON_DESERIALIZATION
           
UNSAFE_INSTANTIATION_FAILED
           
 
Method Summary
static ReflectionMessage valueOf(String name)
          Returns the enum constant of this type with the specified name.
static ReflectionMessage[] 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

MISSING_RETENTION

public static final ReflectionMessage MISSING_RETENTION

MISSING_TARGET

public static final ReflectionMessage MISSING_TARGET

MISSING_TARGET_TYPE_METHOD_OR_TARGET_TYPE

public static final ReflectionMessage MISSING_TARGET_TYPE_METHOD_OR_TARGET_TYPE

TARGET_TYPE_METHOD_INHERITS_FROM_TARGET_TYPE

public static final ReflectionMessage TARGET_TYPE_METHOD_INHERITS_FROM_TARGET_TYPE

MISSING_TARGET_METHOD_FIELD_TYPE

public static final ReflectionMessage MISSING_TARGET_METHOD_FIELD_TYPE

MISSING_TARGET_METHOD_FIELD_PARAMETER_TYPE

public static final ReflectionMessage MISSING_TARGET_METHOD_FIELD_PARAMETER_TYPE

MISSING_TARGET_METHOD_FIELD_TYPE_PARAMETER_OR_TARGET_METHOD_TYPE_OR_TARGET_METHOD_OR_TARGET_TYPE_OR_TARGET_FIELD

public static final ReflectionMessage MISSING_TARGET_METHOD_FIELD_TYPE_PARAMETER_OR_TARGET_METHOD_TYPE_OR_TARGET_METHOD_OR_TARGET_TYPE_OR_TARGET_FIELD

UNABLE_TO_GET_PARAMETER_NAME

public static final ReflectionMessage UNABLE_TO_GET_PARAMETER_NAME

ANNOTATION_MAP_NULL

public static final ReflectionMessage ANNOTATION_MAP_NULL

DECLARED_ANNOTATION_MAP_NULL

public static final ReflectionMessage DECLARED_ANNOTATION_MAP_NULL

CLEANING_JAVASSIST_PROXY_CLASS

public static final ReflectionMessage CLEANING_JAVASSIST_PROXY_CLASS

UNABLE_TO_GET_CONSTRUCTOR_ON_DESERIALIZATION

public static final ReflectionMessage UNABLE_TO_GET_CONSTRUCTOR_ON_DESERIALIZATION

UNABLE_TO_GET_METHOD_ON_DESERIALIZATION

public static final ReflectionMessage UNABLE_TO_GET_METHOD_ON_DESERIALIZATION

UNABLE_TO_GET_FIELD_ON_DESERIALIZATION

public static final ReflectionMessage UNABLE_TO_GET_FIELD_ON_DESERIALIZATION

UNABLE_TO_GET_PARAMETER_ON_DESERIALIZATION

public static final ReflectionMessage UNABLE_TO_GET_PARAMETER_ON_DESERIALIZATION

INCORRECT_NUMBER_OF_ANNOTATED_PARAMETERS_METHOD

public static final ReflectionMessage INCORRECT_NUMBER_OF_ANNOTATED_PARAMETERS_METHOD

INCORRECT_NUMBER_OF_ANNOTATED_PARAMETERS_CONSTRUCTOR

public static final ReflectionMessage INCORRECT_NUMBER_OF_ANNOTATED_PARAMETERS_CONSTRUCTOR

REFLECTIONFACTORY_INSTANTIATION_FAILED

public static final ReflectionMessage REFLECTIONFACTORY_INSTANTIATION_FAILED

UNSAFE_INSTANTIATION_FAILED

public static final ReflectionMessage UNSAFE_INSTANTIATION_FAILED

METHODHANDLER_SET_FAILED

public static final ReflectionMessage METHODHANDLER_SET_FAILED
Method Detail

values

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

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

valueOf

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