public static enum SqsEndpointBuilderFactory.SqsOperations extends Enum<SqsEndpointBuilderFactory.SqsOperations>
org.apache.camel.component.aws.sqs.SqsOperations enum.| Enum Constant and Description |
|---|
deleteMessage |
listQueues |
sendBatchMessage |
| Modifier and Type | Method and Description |
|---|---|
static SqsEndpointBuilderFactory.SqsOperations |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SqsEndpointBuilderFactory.SqsOperations[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SqsEndpointBuilderFactory.SqsOperations sendBatchMessage
public static final SqsEndpointBuilderFactory.SqsOperations deleteMessage
public static final SqsEndpointBuilderFactory.SqsOperations listQueues
public static SqsEndpointBuilderFactory.SqsOperations[] values()
for (SqsEndpointBuilderFactory.SqsOperations c : SqsEndpointBuilderFactory.SqsOperations.values()) System.out.println(c);
public static SqsEndpointBuilderFactory.SqsOperations 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