public static enum JmsTracer.DeliveryOutcome extends Enum<JmsTracer.DeliveryOutcome>
| Enum Constant and Description |
|---|
APPLICATION_ERROR |
DELIVERED |
EXPIRED |
REDELIVERIES_EXCEEDED |
| Modifier and Type | Method and Description |
|---|---|
static JmsTracer.DeliveryOutcome |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static JmsTracer.DeliveryOutcome[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final JmsTracer.DeliveryOutcome DELIVERED
public static final JmsTracer.DeliveryOutcome EXPIRED
public static final JmsTracer.DeliveryOutcome REDELIVERIES_EXCEEDED
public static final JmsTracer.DeliveryOutcome APPLICATION_ERROR
public static JmsTracer.DeliveryOutcome[] values()
for (JmsTracer.DeliveryOutcome c : JmsTracer.DeliveryOutcome.values()) System.out.println(c);
public static JmsTracer.DeliveryOutcome 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 © 2013–2019 The Apache Software Foundation. All rights reserved.