public class AlterTableSpecification extends TableOptionsSpecification<AlterTableSpecification>
ALTER TABLE specification.options| Constructor and Description |
|---|
AlterTableSpecification() |
| Modifier and Type | Method and Description |
|---|---|
AlterTableSpecification |
add(String column,
com.datastax.driver.core.DataType type)
Adds an
ADD to the list of column changes. |
AlterTableSpecification |
alter(String column,
com.datastax.driver.core.DataType type)
Adds an
ALTER to the list of column changes. |
static AlterTableSpecification |
alterTable()
Entry point into the
AlterTableSpecification's fluent API to alter a table. |
static AlterTableSpecification |
alterTable(CqlIdentifier tableName)
Entry point into the
AlterTableSpecification's fluent API to alter a table. |
static AlterTableSpecification |
alterTable(String tableName)
Entry point into the
AlterTableSpecification's fluent API to alter a table. |
List<ColumnChangeSpecification> |
getChanges()
Returns an unmodifiable list of column changes.
|
getOptions, name, name, with, with, withgetNamepublic static AlterTableSpecification alterTable()
AlterTableSpecification's fluent API to alter a table. Convenient if imported
statically.public static AlterTableSpecification alterTable(CqlIdentifier tableName)
AlterTableSpecification's fluent API to alter a table. Convenient if imported
statically.public static AlterTableSpecification alterTable(String tableName)
AlterTableSpecification's fluent API to alter a table. Convenient if imported
statically.public AlterTableSpecification add(String column, com.datastax.driver.core.DataType type)
ADD to the list of column changes.public AlterTableSpecification alter(String column, com.datastax.driver.core.DataType type)
ALTER to the list of column changes.public List<ColumnChangeSpecification> getChanges()
Copyright © 2011-2014–2015 Pivotal Software, Inc.. All rights reserved.