public static enum ObjectQ.Vendor extends java.lang.Enum<ObjectQ.Vendor>
Enum Constant and Description |
---|
DMQ |
HTTP |
JMS |
LIBE |
MQS |
NIPC |
NON_JMS |
NONE |
TUXEDO |
Modifier and Type | Method and Description |
---|---|
static ObjectQ.Vendor |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ObjectQ.Vendor[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ObjectQ.Vendor DMQ
public static final ObjectQ.Vendor HTTP
public static final ObjectQ.Vendor JMS
public static final ObjectQ.Vendor LIBE
public static final ObjectQ.Vendor MQS
public static final ObjectQ.Vendor NIPC
public static final ObjectQ.Vendor NON_JMS
public static final ObjectQ.Vendor NONE
public static final ObjectQ.Vendor TUXEDO
public static ObjectQ.Vendor 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 nullpublic static ObjectQ.Vendor[] values()
for (ObjectQ.Vendor c : ObjectQ.Vendor.values()) System.out.println(c);