public static enum CassandraEndpointBuilderFactory.DefaultConsistencyLevel extends Enum<CassandraEndpointBuilderFactory.DefaultConsistencyLevel>
com.datastax.oss.driver.api.core.DefaultConsistencyLevel
enum.| Enum Constant and Description |
|---|
ALL |
ANY |
EACH_QUORUM |
LOCAL_ONE |
LOCAL_QUORUM |
LOCAL_SERIAL |
ONE |
QUORUM |
SERIAL |
THREE |
TWO |
| Modifier and Type | Method and Description |
|---|---|
static CassandraEndpointBuilderFactory.DefaultConsistencyLevel |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CassandraEndpointBuilderFactory.DefaultConsistencyLevel[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CassandraEndpointBuilderFactory.DefaultConsistencyLevel ANY
public static final CassandraEndpointBuilderFactory.DefaultConsistencyLevel ONE
public static final CassandraEndpointBuilderFactory.DefaultConsistencyLevel TWO
public static final CassandraEndpointBuilderFactory.DefaultConsistencyLevel THREE
public static final CassandraEndpointBuilderFactory.DefaultConsistencyLevel QUORUM
public static final CassandraEndpointBuilderFactory.DefaultConsistencyLevel ALL
public static final CassandraEndpointBuilderFactory.DefaultConsistencyLevel LOCAL_ONE
public static final CassandraEndpointBuilderFactory.DefaultConsistencyLevel LOCAL_QUORUM
public static final CassandraEndpointBuilderFactory.DefaultConsistencyLevel EACH_QUORUM
public static final CassandraEndpointBuilderFactory.DefaultConsistencyLevel SERIAL
public static final CassandraEndpointBuilderFactory.DefaultConsistencyLevel LOCAL_SERIAL
public static CassandraEndpointBuilderFactory.DefaultConsistencyLevel[] values()
for (CassandraEndpointBuilderFactory.DefaultConsistencyLevel c : CassandraEndpointBuilderFactory.DefaultConsistencyLevel.values()) System.out.println(c);
public static CassandraEndpointBuilderFactory.DefaultConsistencyLevel 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