public enum JMSProtocol extends Enum<JMSProtocol>
| Enum Constant and Description |
|---|
AMQP |
ARTEMIS |
OPENWIRE |
RABBITAMQP |
| Modifier and Type | Method and Description |
|---|---|
static JMSProtocol |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static JMSProtocol[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final JMSProtocol ARTEMIS
public static final JMSProtocol AMQP
public static final JMSProtocol OPENWIRE
public static final JMSProtocol RABBITAMQP
public static JMSProtocol[] values()
for (JMSProtocol c : JMSProtocol.values()) System.out.println(c);
public static JMSProtocol 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 nullThis documentation was released into the public domain.