com.dynatrace.oneagent.sdk.api.enums
Enum MessageSystemVendor

java.lang.Object
  extended by java.lang.Enum<MessageSystemVendor>
      extended by com.dynatrace.oneagent.sdk.api.enums.MessageSystemVendor
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<MessageSystemVendor>

public enum MessageSystemVendor
extends java.lang.Enum<MessageSystemVendor>

Enumerates all well-known messaging systems. See OneAgentSDK.createMessagingSystemInfo(String, String, MessageDestinationType, ChannelType, String). Using these constants ensures that services captured by OneAgentSDK are handled the same way as traced via built-in sensors.

Since:
1.5

Enum Constant Summary
ACTIVE_MQ
           
ARTEMIS
           
HORNETQ
           
MQSERIES
           
MQSERIES_JMS
           
RABBIT_MQ
           
TIBCO
           
WEBSPHERE
           
 
Method Summary
 java.lang.String getVendorName()
           
 java.lang.String toString()
           
static MessageSystemVendor valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static MessageSystemVendor[] 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, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

HORNETQ

public static final MessageSystemVendor HORNETQ

ACTIVE_MQ

public static final MessageSystemVendor ACTIVE_MQ

RABBIT_MQ

public static final MessageSystemVendor RABBIT_MQ

ARTEMIS

public static final MessageSystemVendor ARTEMIS

WEBSPHERE

public static final MessageSystemVendor WEBSPHERE

MQSERIES_JMS

public static final MessageSystemVendor MQSERIES_JMS

MQSERIES

public static final MessageSystemVendor MQSERIES

TIBCO

public static final MessageSystemVendor TIBCO
Method Detail

values

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

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

valueOf

public static MessageSystemVendor valueOf(java.lang.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:
java.lang.IllegalArgumentException - if this enum type has no constant with the specified name
java.lang.NullPointerException - if the argument is null

getVendorName

public java.lang.String getVendorName()

toString

public java.lang.String toString()
Overrides:
toString in class java.lang.Enum<MessageSystemVendor>