Enum QueueServiceEndpointBuilderFactory.QueueServiceOperations
- java.lang.Object
-
- java.lang.Enum<QueueServiceEndpointBuilderFactory.QueueServiceOperations>
-
- org.apache.camel.builder.endpoint.dsl.QueueServiceEndpointBuilderFactory.QueueServiceOperations
-
- All Implemented Interfaces:
Serializable
,Comparable<QueueServiceEndpointBuilderFactory.QueueServiceOperations>
- Enclosing interface:
- QueueServiceEndpointBuilderFactory
public static enum QueueServiceEndpointBuilderFactory.QueueServiceOperations extends Enum<QueueServiceEndpointBuilderFactory.QueueServiceOperations>
Proxy enum fororg.apache.camel.component.azure.queue.QueueServiceOperations
enum.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description addMessage
createQueue
deleteMessage
deleteQueue
listQueues
peekMessage
retrieveMessage
updateMessage
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static QueueServiceEndpointBuilderFactory.QueueServiceOperations
valueOf(String name)
Returns the enum constant of this type with the specified name.static QueueServiceEndpointBuilderFactory.QueueServiceOperations[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
listQueues
public static final QueueServiceEndpointBuilderFactory.QueueServiceOperations listQueues
-
createQueue
public static final QueueServiceEndpointBuilderFactory.QueueServiceOperations createQueue
-
deleteQueue
public static final QueueServiceEndpointBuilderFactory.QueueServiceOperations deleteQueue
-
addMessage
public static final QueueServiceEndpointBuilderFactory.QueueServiceOperations addMessage
-
retrieveMessage
public static final QueueServiceEndpointBuilderFactory.QueueServiceOperations retrieveMessage
-
peekMessage
public static final QueueServiceEndpointBuilderFactory.QueueServiceOperations peekMessage
-
updateMessage
public static final QueueServiceEndpointBuilderFactory.QueueServiceOperations updateMessage
-
deleteMessage
public static final QueueServiceEndpointBuilderFactory.QueueServiceOperations deleteMessage
-
-
Method Detail
-
values
public static QueueServiceEndpointBuilderFactory.QueueServiceOperations[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (QueueServiceEndpointBuilderFactory.QueueServiceOperations c : QueueServiceEndpointBuilderFactory.QueueServiceOperations.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static QueueServiceEndpointBuilderFactory.QueueServiceOperations valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-
-