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