org.skyscreamer.nevado.jms.message
Enum JMSXProperty

java.lang.Object
  extended by java.lang.Enum<JMSXProperty>
      extended by org.skyscreamer.nevado.jms.message.JMSXProperty
All Implemented Interfaces:
Serializable, Comparable<JMSXProperty>

public enum JMSXProperty
extends Enum<JMSXProperty>

Created by IntelliJ IDEA. User: Carter Page Date: 4/1/12 Time: 11:37 PM


Enum Constant Summary
JMSXAppID
           
JMSXConsumerTXID
           
JMSXDeliveryCount
           
JMSXGroupID
           
JMSXGroupSeq
           
JMSXProducerTXID
           
JMSXRcvTimestamp
           
JMSXState
           
JMSXUserID
           
 
Method Summary
static List<JMSXProperty> getSupportedProperties()
           
 Class getType()
           
 boolean isSupported()
           
static JMSXProperty valueOf(String name)
          Returns the enum constant of this type with the specified name.
static JMSXProperty[] 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

JMSXUserID

public static final JMSXProperty JMSXUserID

JMSXAppID

public static final JMSXProperty JMSXAppID

JMSXDeliveryCount

public static final JMSXProperty JMSXDeliveryCount

JMSXGroupID

public static final JMSXProperty JMSXGroupID

JMSXGroupSeq

public static final JMSXProperty JMSXGroupSeq

JMSXProducerTXID

public static final JMSXProperty JMSXProducerTXID

JMSXConsumerTXID

public static final JMSXProperty JMSXConsumerTXID

JMSXRcvTimestamp

public static final JMSXProperty JMSXRcvTimestamp

JMSXState

public static final JMSXProperty JMSXState
Method Detail

values

public static JMSXProperty[] 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 (JMSXProperty c : JMSXProperty.values())
    System.out.println(c);

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

valueOf

public static JMSXProperty 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

getSupportedProperties

public static List<JMSXProperty> getSupportedProperties()

getType

public Class getType()

isSupported

public boolean isSupported()


Copyright © 2013. All Rights Reserved.