public enum XmlMessage extends Enum<XmlMessage>
Enum Constant and Description |
---|
CANNOT_LOAD_CLASS |
CONFIGURATION_ERROR |
LOAD_ERROR |
MULTIPLE_ALTERNATIVES |
MULTIPLE_DECORATORS |
MULTIPLE_INTERCEPTORS |
MULTIPLE_SCANNING |
PARSING_ERROR |
XSD_VALIDATION_ERROR |
XSD_VALIDATION_WARNING |
Modifier and Type | Method and Description |
---|---|
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.
|
public static final XmlMessage CONFIGURATION_ERROR
public static final XmlMessage LOAD_ERROR
public static final XmlMessage PARSING_ERROR
public static final XmlMessage MULTIPLE_ALTERNATIVES
public static final XmlMessage MULTIPLE_DECORATORS
public static final XmlMessage MULTIPLE_INTERCEPTORS
public static final XmlMessage CANNOT_LOAD_CLASS
public static final XmlMessage MULTIPLE_SCANNING
public static final XmlMessage XSD_VALIDATION_ERROR
public static final XmlMessage XSD_VALIDATION_WARNING
public static XmlMessage[] values()
for (XmlMessage c : XmlMessage.values()) System.out.println(c);
public static XmlMessage valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant
with the specified nameNullPointerException
- if the argument is nullCopyright © 2012 Seam Framework. All Rights Reserved.