| Package | Description |
|---|---|
| org.springframework.cassandra.core |
CQL core support.
|
| org.springframework.cassandra.core.cql.generator |
CQL generators for Keyspace object actions.
|
| org.springframework.cassandra.core.keyspace |
Keyspace object action specifications such as
CREATE TABLE, DROP INDEX. |
| Modifier and Type | Method and Description |
|---|---|
com.datastax.driver.core.ResultSet |
CqlTemplate.execute(CreateIndexSpecification specification) |
com.datastax.driver.core.ResultSet |
CqlOperations.execute(CreateIndexSpecification specification)
Convenience method to convert the given specification to CQL and execute it.
|
| Modifier and Type | Method and Description |
|---|---|
static String |
CreateIndexCqlGenerator.toCql(CreateIndexSpecification specification) |
| Constructor and Description |
|---|
CreateIndexCqlGenerator(CreateIndexSpecification specification) |
| Modifier and Type | Method and Description |
|---|---|
CreateIndexSpecification |
CreateIndexSpecification.columnName(CqlIdentifier columnName) |
CreateIndexSpecification |
CreateIndexSpecification.columnName(String columnName) |
static CreateIndexSpecification |
CreateIndexSpecification.createIndex()
Entry point into the
CreateIndexSpecification's fluent API to create a index. |
static CreateIndexSpecification |
CreateIndexSpecification.createIndex(CqlIdentifier name)
Entry point into the
CreateIndexSpecification's fluent API to create a index. |
static CreateIndexSpecification |
CreateIndexSpecification.createIndex(String name)
Entry point into the
CreateIndexSpecification's fluent API to create a index. |
CreateIndexSpecification |
CreateIndexSpecification.ifNotExists()
Causes the inclusion of an
IF NOT EXISTS clause. |
CreateIndexSpecification |
CreateIndexSpecification.ifNotExists(boolean ifNotExists)
Toggles the inclusion of an
IF NOT EXISTS clause. |
CreateIndexSpecification |
CreateIndexSpecification.tableName(CqlIdentifier tableName) |
CreateIndexSpecification |
CreateIndexSpecification.tableName(String tableName)
Sets the table name.
|
CreateIndexSpecification |
CreateIndexSpecification.using(String className) |
Copyright © 2011–2019 Pivotal Software, Inc.. All rights reserved.