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