public static enum ServiceBusEndpointBuilderFactory.ServiceBusReceiveMode extends Enum<ServiceBusEndpointBuilderFactory.ServiceBusReceiveMode>
com.azure.messaging.servicebus.models.ServiceBusReceiveMode
enum.| Enum Constant and Description |
|---|
PEEK_LOCK |
RECEIVE_AND_DELETE |
| Modifier and Type | Method and Description |
|---|---|
static ServiceBusEndpointBuilderFactory.ServiceBusReceiveMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ServiceBusEndpointBuilderFactory.ServiceBusReceiveMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ServiceBusEndpointBuilderFactory.ServiceBusReceiveMode PEEK_LOCK
public static final ServiceBusEndpointBuilderFactory.ServiceBusReceiveMode RECEIVE_AND_DELETE
public static ServiceBusEndpointBuilderFactory.ServiceBusReceiveMode[] values()
for (ServiceBusEndpointBuilderFactory.ServiceBusReceiveMode c : ServiceBusEndpointBuilderFactory.ServiceBusReceiveMode.values()) System.out.println(c);
public static ServiceBusEndpointBuilderFactory.ServiceBusReceiveMode 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