public enum ImaDestinationType extends Enum<ImaDestinationType>
Enum Constant and Description |
---|
queue
The destination is a queue
|
topic
The destination is a topic
|
Modifier and Type | Field and Description |
---|---|
static String |
COPYRIGHT |
Modifier and Type | Method and Description |
---|---|
static ImaDestinationType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ImaDestinationType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ImaDestinationType queue
public static final ImaDestinationType topic
public static final String COPYRIGHT
public static ImaDestinationType[] values()
for (ImaDestinationType c : ImaDestinationType.values()) System.out.println(c);
public static ImaDestinationType 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 nullCopyright © Contributors to the Eclipse Foundation 2014-2021