public enum MQOperations extends Enum<MQOperations>
Enum Constant and Description |
---|
createBroker |
deleteBroker |
describeBroker |
listBrokers |
rebootBroker |
updateBroker |
Modifier and Type | Method and Description |
---|---|
static MQOperations |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static MQOperations[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MQOperations listBrokers
public static final MQOperations createBroker
public static final MQOperations deleteBroker
public static final MQOperations rebootBroker
public static final MQOperations updateBroker
public static final MQOperations describeBroker
public static MQOperations[] values()
for (MQOperations c : MQOperations.values()) System.out.println(c);
public static MQOperations 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 nullApache Camel