Uses of Class
org.springframework.data.cassandra.core.cql.keyspace.ColumnSpecification
Packages that use ColumnSpecification
Package
Description
Keyspace object action specifications such as
CREATE TABLE, DROP INDEX.-
Uses of ColumnSpecification in org.springframework.data.cassandra.core.cql.keyspace
Methods in org.springframework.data.cassandra.core.cql.keyspace that return ColumnSpecificationModifier and TypeMethodDescriptionColumnSpecification.clustered()Identifies this column as a clustered key column with default ordering.Identifies this column as a clustered key column with the given ordering.Toggles the identification of this column as a clustered key column.ColumnSpecification.keyType(PrimaryKeyType keyType) Sets the column'skeyType.static ColumnSpecificationColumnSpecification.name(com.datastax.oss.driver.api.core.CqlIdentifier name) Create a newColumnSpecificationfor the givenname.static ColumnSpecificationCreate a newColumnSpecificationfor the givenname.Sets the column'sordering.ColumnSpecification.partitioned()Identifies this column as a primary key column that is also part of a partition key.ColumnSpecification.partitioned(boolean partitioned) Toggles the identification of this column as a primary key column that also is or is part of a partition key.ColumnSpecification.staticColumn()Identifies this column as a static column.ColumnSpecification.type(com.datastax.oss.driver.api.core.type.DataType type) Sets the column's type.Methods in org.springframework.data.cassandra.core.cql.keyspace that return types with arguments of type ColumnSpecificationModifier and TypeMethodDescriptionTableDescriptor.getClusteredKeyColumns()Returns an unmodifiable list of all primary key columns that are not also partition key columns.TableSpecification.getClusteredKeyColumns()Returns an unmodifiable list of all primary key columns that are not also partition key columns.TableDescriptor.getColumns()Returns an unmodifiableListofColumnSpecifications.TableSpecification.getColumns()Returns an unmodifiable list of all columns.TableDescriptor.getNonKeyColumns()Returns an unmodifiable list of all non-key columns.TableSpecification.getNonKeyColumns()Returns an unmodifiable list of all non-key columns.TableDescriptor.getPartitionKeyColumns()Returns an unmodifiable list of all partition key columns.TableSpecification.getPartitionKeyColumns()Returns an unmodifiable list of all partition key columns.TableDescriptor.getPrimaryKeyColumns()Returns an unmodifiable list of all partition and primary key columns.TableSpecification.getPrimaryKeyColumns()Returns an unmodifiable list of all primary key columns that are not also partition key columns.TableDescriptor.getStaticColumns()Returns an unmodifiable list of static columns.TableSpecification.getStaticColumns()Returns an unmodifiable list of static columns.