Class ColumnChangeSpecification
java.lang.Object
org.springframework.data.cassandra.core.cql.keyspace.ColumnChangeSpecification
- Direct Known Subclasses:
ColumnTypeChangeSpecification
,DropColumnSpecification
,RenameColumnSpecification
Base value object class for column change specifications.
- Author:
- Matthew T. Adams, Mark Paluch
-
Field Summary
Modifier and TypeFieldDescriptionprotected final com.datastax.oss.driver.api.core.CqlIdentifier
-
Constructor Summary
ModifierConstructorDescriptionprotected
ColumnChangeSpecification
(com.datastax.oss.driver.api.core.CqlIdentifier name) Create a newColumnChangeSpecification
. -
Method Summary
-
Field Details
-
name
protected final com.datastax.oss.driver.api.core.CqlIdentifier name
-
-
Constructor Details
-
ColumnChangeSpecification
protected ColumnChangeSpecification(com.datastax.oss.driver.api.core.CqlIdentifier name) Create a newColumnChangeSpecification
.- Parameters:
name
- must not be null.
-
-
Method Details
-
getName
public com.datastax.oss.driver.api.core.CqlIdentifier getName()- Returns:
- the column name.
-