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