public enum XmlError extends Enum<XmlError> implements org.mule.runtime.extension.api.error.ErrorTypeDefinition<XmlError>
| Enum Constant and Description |
|---|
INVALID_INPUT_XML
The input document is not a valid XML
|
INVALID_SCHEMA
The supplied schema is invalid
|
INVALID_XPATH_EXPRESSION
The supplied XPath expression is invalid
|
NULL_CONTEXT_PROPERTY
A context property with a null value was supplied
|
SCHEMA_NOT_FOUND
The schema could not be found
|
SCHEMA_NOT_HONOURED
The input XML document does not honour its schema
|
TRANSFORMATION
There was an error transforming an XML document
|
| Modifier and Type | Method and Description |
|---|---|
Optional<org.mule.runtime.extension.api.error.ErrorTypeDefinition<? extends Enum<?>>> |
getParent() |
static XmlError |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static XmlError[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final XmlError INVALID_INPUT_XML
public static final XmlError INVALID_XPATH_EXPRESSION
public static final XmlError NULL_CONTEXT_PROPERTY
public static final XmlError TRANSFORMATION
public static final XmlError SCHEMA_NOT_HONOURED
public static final XmlError SCHEMA_NOT_FOUND
public static final XmlError INVALID_SCHEMA
public static XmlError[] values()
for (XmlError c : XmlError.values()) System.out.println(c);
public static XmlError 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 © 2026 MuleSoft, Inc.. All rights reserved.