org.jboss.weld.logging.messages
Enum XmlMessage
java.lang.Object
java.lang.Enum<XmlMessage>
org.jboss.weld.logging.messages.XmlMessage
- All Implemented Interfaces:
- Serializable, Comparable<XmlMessage>
public enum XmlMessage
- extends Enum<XmlMessage>
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. |
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
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.