com.bea.control
Enum MQControl.ConnectionType

java.lang.Object
  extended by java.lang.Enum<MQControl.ConnectionType>
      extended by com.bea.control.MQControl.ConnectionType
All Implemented Interfaces:
Serializable, Comparable<MQControl.ConnectionType>
Enclosing interface:
MQControl

public static enum MQControl.ConnectionType
extends Enum<MQControl.ConnectionType>


Enum Constant Summary
BINDINGS
           
TCP
           
 
Method Summary
static MQControl.ConnectionType valueOf(String name)
          Returns the enum constant of this type with the specified name.
static MQControl.ConnectionType[] values()
          Returns an array containing the constants of this enum type, in the order they're declared.
 
Methods inherited from class java.lang.Enum
compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

BINDINGS

public static final MQControl.ConnectionType BINDINGS

TCP

public static final MQControl.ConnectionType TCP
Method Detail

values

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

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

valueOf

public static MQControl.ConnectionType 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