public enum WMQPriority extends java.lang.Enum<WMQPriority>
| Enum Constant and Description |
|---|
APPLICATION_DEFINED |
QUEUE_DEFINED |
SPECIFIED |
| Modifier and Type | Method and Description |
|---|---|
static WMQPriority |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static WMQPriority[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final WMQPriority APPLICATION_DEFINED
public static final WMQPriority SPECIFIED
public static final WMQPriority QUEUE_DEFINED
public static WMQPriority[] values()
for (WMQPriority c : WMQPriority.values()) System.out.println(c);
public static WMQPriority valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant
with the specified namejava.lang.NullPointerException - if the argument is null