public enum AsyncApiError extends Enum<AsyncApiError> implements org.mule.runtime.extension.api.error.ErrorTypeDefinition<AsyncApiError>
| Enum Constant and Description |
|---|
INTERNAL_SERVER_ERROR |
PUBLISHING_ERROR |
ROUTING_ERROR |
VALIDATION_ERROR |
| Modifier and Type | Method and Description |
|---|---|
static AsyncApiError |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AsyncApiError[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AsyncApiError INTERNAL_SERVER_ERROR
public static final AsyncApiError VALIDATION_ERROR
public static final AsyncApiError PUBLISHING_ERROR
public static final AsyncApiError ROUTING_ERROR
public static AsyncApiError[] values()
for (AsyncApiError c : AsyncApiError.values()) System.out.println(c);
public static AsyncApiError 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 © 2025 MuleSoft, Inc.. All rights reserved.