public enum JmsSpecification extends Enum<JmsSpecification>
JmsConnector| Enum Constant and Description |
|---|
JMS_1_0_2b |
JMS_1_1 |
JMS_2_0 |
| Modifier and Type | Method and Description |
|---|---|
String |
getName() |
static JmsSpecification |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static JmsSpecification[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final JmsSpecification JMS_1_0_2b
public static final JmsSpecification JMS_1_1
public static final JmsSpecification JMS_2_0
public static JmsSpecification[] values()
for (JmsSpecification c : JmsSpecification.values()) System.out.println(c);
public static JmsSpecification 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 nullpublic String getName()
Copyright © 2020. All rights reserved.