public enum QueueServiceOperations extends Enum<QueueServiceOperations>
Enum Constant and Description |
---|
addMessage |
createQueue |
deleteMessage |
deleteQueue |
listQueues |
peekMessage |
retrieveMessage |
updateMessage |
Modifier and Type | Method and Description |
---|---|
static QueueServiceOperations |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static QueueServiceOperations[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final QueueServiceOperations listQueues
public static final QueueServiceOperations createQueue
public static final QueueServiceOperations deleteQueue
public static final QueueServiceOperations addMessage
public static final QueueServiceOperations retrieveMessage
public static final QueueServiceOperations peekMessage
public static final QueueServiceOperations updateMessage
public static final QueueServiceOperations deleteMessage
public static QueueServiceOperations[] values()
for (QueueServiceOperations c : QueueServiceOperations.values()) System.out.println(c);
public static QueueServiceOperations 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