public static enum CosmosDbEndpointBuilderFactory.ConsistencyLevel extends Enum<CosmosDbEndpointBuilderFactory.ConsistencyLevel>
com.azure.cosmos.ConsistencyLevel enum.| Enum Constant and Description |
|---|
BOUNDED_STALENESS |
CONSISTENT_PREFIX |
EVENTUAL |
SESSION |
STRONG |
| Modifier and Type | Method and Description |
|---|---|
static CosmosDbEndpointBuilderFactory.ConsistencyLevel |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CosmosDbEndpointBuilderFactory.ConsistencyLevel[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CosmosDbEndpointBuilderFactory.ConsistencyLevel STRONG
public static final CosmosDbEndpointBuilderFactory.ConsistencyLevel BOUNDED_STALENESS
public static final CosmosDbEndpointBuilderFactory.ConsistencyLevel SESSION
public static final CosmosDbEndpointBuilderFactory.ConsistencyLevel EVENTUAL
public static final CosmosDbEndpointBuilderFactory.ConsistencyLevel CONSISTENT_PREFIX
public static CosmosDbEndpointBuilderFactory.ConsistencyLevel[] values()
for (CosmosDbEndpointBuilderFactory.ConsistencyLevel c : CosmosDbEndpointBuilderFactory.ConsistencyLevel.values()) System.out.println(c);
public static CosmosDbEndpointBuilderFactory.ConsistencyLevel 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