org.jboss.weld.logging.messages
Enum ValidatorMessage

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

public enum ValidatorMessage
extends java.lang.Enum<ValidatorMessage>


Enum Constant Summary
ALTERNATIVE_BEAN_CLASS_NOT_ANNOTATED
           
ALTERNATIVE_BEAN_CLASS_SPECIFIED_MULTIPLE_TIMES
           
ALTERNATIVE_STEREOTYPE_NOT_ANNOTATED
           
ALTERNATIVE_STEREOTYPE_SPECIFIED_MULTIPLE_TIMES
           
AMBIGUOUS_EL_NAME
           
BEAN_NAME_IS_PREFIX
           
BEAN_SPECIALIZED_TOO_MANY_TIMES
           
DECORATOR_CLASS_NOT_BEAN_CLASS_OF_DECORATOR
           
DECORATOR_SPECIFIED_TWICE
           
DISPOSAL_METHODS_WITHOUT_PRODUCER
           
INJECTION_INTO_NON_BEAN
           
INJECTION_INTO_NON_DEPENDENT_BEAN
           
INJECTION_POINT_HAS_AMBIGUOUS_DEPENDENCIES
           
INJECTION_POINT_HAS_NON_PROXYABLE_DEPENDENCIES
           
INJECTION_POINT_HAS_NON_SERIALIZABLE_DEPENDENCY
           
INJECTION_POINT_HAS_NULLABLE_DEPENDENCIES
           
INJECTION_POINT_HAS_UNSATISFIED_DEPENDENCIES
           
INJECTION_POINT_HAS_WILDCARD
           
INJECTION_POINT_MUST_HAVE_TYPE_PARAMETER
           
INJECTION_POINT_WITH_TYPE_VARIABLE
           
INTERCEPTOR_NOT_ANNOTATED_OR_REGISTERED
           
INTERCEPTOR_SPECIFIED_TWICE
           
NEW_WITH_QUALIFIERS
           
NON_SERIALIZABLE_BEAN_INJECTED_INTO_PASSIVATING_BEAN
           
NOT_PROXYABLE
           
PASSIVATING_BEAN_WITH_NONSERIALIZABLE_DECORATOR
           
PASSIVATING_BEAN_WITH_NONSERIALIZABLE_INTERCEPTOR
           
 
Method Summary
static ValidatorMessage valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static ValidatorMessage[] 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

NOT_PROXYABLE

public static final ValidatorMessage NOT_PROXYABLE

BEAN_SPECIALIZED_TOO_MANY_TIMES

public static final ValidatorMessage BEAN_SPECIALIZED_TOO_MANY_TIMES

PASSIVATING_BEAN_WITH_NONSERIALIZABLE_INTERCEPTOR

public static final ValidatorMessage PASSIVATING_BEAN_WITH_NONSERIALIZABLE_INTERCEPTOR

PASSIVATING_BEAN_WITH_NONSERIALIZABLE_DECORATOR

public static final ValidatorMessage PASSIVATING_BEAN_WITH_NONSERIALIZABLE_DECORATOR

NEW_WITH_QUALIFIERS

public static final ValidatorMessage NEW_WITH_QUALIFIERS

INJECTION_INTO_NON_BEAN

public static final ValidatorMessage INJECTION_INTO_NON_BEAN

INJECTION_INTO_NON_DEPENDENT_BEAN

public static final ValidatorMessage INJECTION_INTO_NON_DEPENDENT_BEAN

INJECTION_POINT_WITH_TYPE_VARIABLE

public static final ValidatorMessage INJECTION_POINT_WITH_TYPE_VARIABLE

INJECTION_POINT_HAS_UNSATISFIED_DEPENDENCIES

public static final ValidatorMessage INJECTION_POINT_HAS_UNSATISFIED_DEPENDENCIES

INJECTION_POINT_HAS_AMBIGUOUS_DEPENDENCIES

public static final ValidatorMessage INJECTION_POINT_HAS_AMBIGUOUS_DEPENDENCIES

INJECTION_POINT_HAS_NON_PROXYABLE_DEPENDENCIES

public static final ValidatorMessage INJECTION_POINT_HAS_NON_PROXYABLE_DEPENDENCIES

INJECTION_POINT_HAS_NULLABLE_DEPENDENCIES

public static final ValidatorMessage INJECTION_POINT_HAS_NULLABLE_DEPENDENCIES

NON_SERIALIZABLE_BEAN_INJECTED_INTO_PASSIVATING_BEAN

public static final ValidatorMessage NON_SERIALIZABLE_BEAN_INJECTED_INTO_PASSIVATING_BEAN

INJECTION_POINT_HAS_NON_SERIALIZABLE_DEPENDENCY

public static final ValidatorMessage INJECTION_POINT_HAS_NON_SERIALIZABLE_DEPENDENCY

AMBIGUOUS_EL_NAME

public static final ValidatorMessage AMBIGUOUS_EL_NAME

BEAN_NAME_IS_PREFIX

public static final ValidatorMessage BEAN_NAME_IS_PREFIX

INTERCEPTOR_SPECIFIED_TWICE

public static final ValidatorMessage INTERCEPTOR_SPECIFIED_TWICE

INTERCEPTOR_NOT_ANNOTATED_OR_REGISTERED

public static final ValidatorMessage INTERCEPTOR_NOT_ANNOTATED_OR_REGISTERED

DECORATOR_SPECIFIED_TWICE

public static final ValidatorMessage DECORATOR_SPECIFIED_TWICE

DECORATOR_CLASS_NOT_BEAN_CLASS_OF_DECORATOR

public static final ValidatorMessage DECORATOR_CLASS_NOT_BEAN_CLASS_OF_DECORATOR

ALTERNATIVE_STEREOTYPE_NOT_ANNOTATED

public static final ValidatorMessage ALTERNATIVE_STEREOTYPE_NOT_ANNOTATED

ALTERNATIVE_STEREOTYPE_SPECIFIED_MULTIPLE_TIMES

public static final ValidatorMessage ALTERNATIVE_STEREOTYPE_SPECIFIED_MULTIPLE_TIMES

ALTERNATIVE_BEAN_CLASS_NOT_ANNOTATED

public static final ValidatorMessage ALTERNATIVE_BEAN_CLASS_NOT_ANNOTATED

ALTERNATIVE_BEAN_CLASS_SPECIFIED_MULTIPLE_TIMES

public static final ValidatorMessage ALTERNATIVE_BEAN_CLASS_SPECIFIED_MULTIPLE_TIMES

DISPOSAL_METHODS_WITHOUT_PRODUCER

public static final ValidatorMessage DISPOSAL_METHODS_WITHOUT_PRODUCER

INJECTION_POINT_HAS_WILDCARD

public static final ValidatorMessage INJECTION_POINT_HAS_WILDCARD

INJECTION_POINT_MUST_HAVE_TYPE_PARAMETER

public static final ValidatorMessage INJECTION_POINT_MUST_HAVE_TYPE_PARAMETER
Method Detail

values

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

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

valueOf

public static ValidatorMessage valueOf(java.lang.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:
java.lang.IllegalArgumentException - if this enum type has no constant with the specified name
java.lang.NullPointerException - if the argument is null


Copyright © 2008-2010 Seam Framework. All Rights Reserved.