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