| Package | Description |
|---|---|
| org.springframework.data.cassandra.config |
Spring Data Cassandra
factory beans and configuration. |
| org.springframework.data.cassandra.core.cql.generator |
CQL generators for Keyspace object actions.
|
| org.springframework.data.cassandra.core.cql.keyspace |
Keyspace object action specifications such as
CREATE TABLE, DROP INDEX. |
| Modifier and Type | Method and Description |
|---|---|
protected List<DropKeyspaceSpecification> |
AbstractSessionConfiguration.getKeyspaceDrops()
Returns the list of keyspace drops to be run before shutdown.
|
| Modifier and Type | Method and Description |
|---|---|
void |
CqlSessionFactoryBean.setKeyspaceDrops(List<DropKeyspaceSpecification> specifications)
|
| Modifier and Type | Method and Description |
|---|---|
static String |
DropKeyspaceCqlGenerator.toCql(DropKeyspaceSpecification specification) |
| Constructor and Description |
|---|
DropKeyspaceCqlGenerator(DropKeyspaceSpecification specification) |
| Modifier and Type | Method and Description |
|---|---|
static DropKeyspaceSpecification |
DropKeyspaceSpecification.dropKeyspace(com.datastax.oss.driver.api.core.CqlIdentifier name)
Create a new
DropKeyspaceSpecification for the given name. |
static DropKeyspaceSpecification |
DropKeyspaceSpecification.dropKeyspace(KeyspaceIdentifier name)
Deprecated.
since 3.0, use
dropKeyspace(CqlIdentifier). |
static DropKeyspaceSpecification |
DropKeyspaceSpecification.dropKeyspace(String name)
Create a new
DropKeyspaceSpecification for the given name. |
DropKeyspaceSpecification |
DropKeyspaceSpecification.ifExists()
Causes the inclusion of an
IF EXISTS clause. |
DropKeyspaceSpecification |
DropKeyspaceSpecification.ifExists(boolean ifExists)
Toggles the inclusion of an
IF EXISTS clause. |
Copyright © 2011–2021 Pivotal Software, Inc.. All rights reserved.