org.jboss.weld.logging.messages
Enum XmlMessage

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

public enum XmlMessage
extends Enum<XmlMessage>


Enum Constant Summary
CANNOT_LOAD_CLASS
           
CONFIGURATION_ERROR
           
LOAD_ERROR
           
MULTIPLE_ALTERNATIVES
           
MULTIPLE_DECORATORS
           
MULTIPLE_INTERCEPTORS
           
MULTIPLE_SCANNING
           
PARSING_ERROR
           
XSD_VALIDATION_ERROR
           
XSD_VALIDATION_WARNING
           
 
Method Summary
static XmlMessage valueOf(String name)
          Returns the enum constant of this type with the specified name.
static XmlMessage[] 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

CONFIGURATION_ERROR

public static final XmlMessage CONFIGURATION_ERROR

LOAD_ERROR

public static final XmlMessage LOAD_ERROR

PARSING_ERROR

public static final XmlMessage PARSING_ERROR

MULTIPLE_ALTERNATIVES

public static final XmlMessage MULTIPLE_ALTERNATIVES

MULTIPLE_DECORATORS

public static final XmlMessage MULTIPLE_DECORATORS

MULTIPLE_INTERCEPTORS

public static final XmlMessage MULTIPLE_INTERCEPTORS

CANNOT_LOAD_CLASS

public static final XmlMessage CANNOT_LOAD_CLASS

MULTIPLE_SCANNING

public static final XmlMessage MULTIPLE_SCANNING

XSD_VALIDATION_ERROR

public static final XmlMessage XSD_VALIDATION_ERROR

XSD_VALIDATION_WARNING

public static final XmlMessage XSD_VALIDATION_WARNING
Method Detail

values

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

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

valueOf

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