| Package | Description |
|---|---|
| org.springframework.data.cassandra.core |
Apache Cassandra core support.
|
| org.springframework.data.cassandra.core.convert |
Spring Data Cassandra specific converter infrastructure.
|
| 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<CreateTableSpecification> |
CassandraPersistentEntitySchemaCreator.createTableSpecifications(boolean ifNotExists)
Create
List of CreateTableSpecification. |
| Modifier and Type | Method and Description |
|---|---|
CreateTableSpecification |
SchemaFactory.getCreateTableSpecificationFor(CassandraPersistentEntity<?> entity)
Returns a
CreateTableSpecification for the given entity, including all mapping information. |
CreateTableSpecification |
SchemaFactory.getCreateTableSpecificationFor(CassandraPersistentEntity<?> entity,
com.datastax.oss.driver.api.core.CqlIdentifier tableName)
Returns a
CreateTableSpecification for the given entity using table name, including
all mapping information. |
CreateTableSpecification |
SchemaFactory.getCreateTableSpecificationFor(Class<?> entityType)
Returns a
CreateTableSpecification for the given entity, including all mapping information. |
| Modifier and Type | Method and Description |
|---|---|
protected CreateTableSpecification |
CreateTableCqlGenerator.spec() |
| Modifier and Type | Method and Description |
|---|---|
static String |
CreateTableCqlGenerator.toCql(CreateTableSpecification specification) |
| Constructor and Description |
|---|
CreateTableCqlGenerator(CreateTableSpecification specification) |
| Modifier and Type | Method and Description |
|---|---|
static CreateTableSpecification |
CreateTableSpecification.createTable(com.datastax.oss.driver.api.core.CqlIdentifier tableName)
Entry point into the
CreateTableSpecification's fluent API given tableName to create a table. |
static CreateTableSpecification |
CreateTableSpecification.createTable(String tableName)
Entry point into the
CreateTableSpecification's fluent API given tableName to create a table. |
CreateTableSpecification |
CreateTableSpecification.ifNotExists()
Causes the inclusion of an
IF NOT EXISTS clause. |
CreateTableSpecification |
CreateTableSpecification.ifNotExists(boolean ifNotExists)
Toggles the inclusion of an
IF NOT EXISTS clause. |
CreateTableSpecification |
CreateTableSpecification.with(String name,
Object value,
boolean escape,
boolean quote) |
CreateTableSpecification |
CreateTableSpecification.with(TableOption option) |
CreateTableSpecification |
CreateTableSpecification.with(TableOption option,
Object value) |
Copyright © 2011–2021 Pivotal Software, Inc.. All rights reserved.