public enum JMSDeliveryStatus extends Enum<JMSDeliveryStatus>
| Enum Constant and Description |
|---|
ORIGINAL
JMS delivery statuses.
|
REDELIVERED |
| Modifier and Type | Method and Description |
|---|---|
String |
getStatus()
Gets JMS delivery status.
|
static JMSDeliveryStatus |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static JMSDeliveryStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final JMSDeliveryStatus ORIGINAL
public static final JMSDeliveryStatus REDELIVERED
public static JMSDeliveryStatus[] values()
for (JMSDeliveryStatus c : JMSDeliveryStatus.values()) System.out.println(c);
public static JMSDeliveryStatus 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 nullpublic String getStatus()
Copyright © 2019 WSO2. All rights reserved.