org.apache.camel.component.sjms.jms
Enum JmsMessageHeaderType

java.lang.Object
  extended by java.lang.Enum<JmsMessageHeaderType>
      extended by org.apache.camel.component.sjms.jms.JmsMessageHeaderType
All Implemented Interfaces:
Serializable, Comparable<JmsMessageHeaderType>

public enum JmsMessageHeaderType
extends Enum<JmsMessageHeaderType>


Enum Constant Summary
JMSCorrelationID
           
JMSDeliveryMode
           
JMSDestination
           
JMSExpiration
           
JMSMessageID
           
JMSPriority
           
JMSRedelivered
           
JMSReplyTo
           
JMSTimestamp
           
JMSType
           
JMSXGroupID
           
 
Method Summary
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.
 
Methods inherited from class java.lang.Enum
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

JMSDestination

public static final JmsMessageHeaderType JMSDestination

JMSDeliveryMode

public static final JmsMessageHeaderType JMSDeliveryMode

JMSExpiration

public static final JmsMessageHeaderType JMSExpiration

JMSPriority

public static final JmsMessageHeaderType JMSPriority

JMSMessageID

public static final JmsMessageHeaderType JMSMessageID

JMSTimestamp

public static final JmsMessageHeaderType JMSTimestamp

JMSCorrelationID

public static final JmsMessageHeaderType JMSCorrelationID

JMSReplyTo

public static final JmsMessageHeaderType JMSReplyTo

JMSType

public static final JmsMessageHeaderType JMSType

JMSRedelivered

public static final JmsMessageHeaderType JMSRedelivered

JMSXGroupID

public static final JmsMessageHeaderType JMSXGroupID
Method Detail

values

public static JmsMessageHeaderType[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
for (JmsMessageHeaderType c : JmsMessageHeaderType.values())
    System.out.println(c);

Returns:
an array containing the constants of this enum type, in the order they are declared

valueOf

public static JmsMessageHeaderType valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)

Parameters:
name - the name of the enum constant to be returned.
Returns:
the enum constant with the specified name
Throws:
IllegalArgumentException - if this enum type has no constant with the specified name
NullPointerException - if the argument is null


Apache Camel