public enum JmsMessageHeaderType extends Enum<JmsMessageHeaderType>
| Enum Constant and Description |
|---|
JMSCorrelationID |
JMSDeliveryMode |
JMSDestination |
JMSExpiration |
JMSMessageID |
JMSPriority |
JMSRedelivered |
JMSReplyTo |
JMSTimestamp |
JMSType |
JMSXGroupID |
| Modifier and Type | Method and Description |
|---|---|
static JmsMessageHeaderType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static JmsMessageHeaderType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final JmsMessageHeaderType JMSDestination
public static final JmsMessageHeaderType JMSDeliveryMode
public static final JmsMessageHeaderType JMSExpiration
public static final JmsMessageHeaderType JMSPriority
public static final JmsMessageHeaderType JMSMessageID
public static final JmsMessageHeaderType JMSTimestamp
public static final JmsMessageHeaderType JMSCorrelationID
public static final JmsMessageHeaderType JMSReplyTo
public static final JmsMessageHeaderType JMSType
public static final JmsMessageHeaderType JMSRedelivered
public static final JmsMessageHeaderType JMSXGroupID
public static JmsMessageHeaderType[] values()
for (JmsMessageHeaderType c : JmsMessageHeaderType.values()) System.out.println(c);
public static JmsMessageHeaderType 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 nullApache Camel