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