Uses of Enum Class
org.springframework.data.cassandra.core.cql.Ordering
Packages that use Ordering
Package
Description
CQL core support.
Keyspace object action specifications such as
CREATE TABLE
, DROP INDEX
.Infrastructure for the Apache Cassandra row-to-object mapping subsystem.
-
Uses of Ordering in org.springframework.data.cassandra.core.cql
Methods in org.springframework.data.cassandra.core.cql that return Ordering -
Uses of Ordering in org.springframework.data.cassandra.core.cql.keyspace
Fields in org.springframework.data.cassandra.core.cql.keyspace declared as OrderingModifier and TypeFieldDescriptionstatic final Ordering
ColumnSpecification.DEFAULT_ORDERING
Default ordering of primary key fields; value isASCENDING
.Methods in org.springframework.data.cassandra.core.cql.keyspace that return OrderingMethods in org.springframework.data.cassandra.core.cql.keyspace with parameters of type OrderingModifier and TypeMethodDescriptionIdentifies this column as a clustered key column with the given ordering.Toggles the identification of this column as a clustered key column.TableSpecification.clusteredKeyColumn
(com.datastax.oss.driver.api.core.CqlIdentifier name, com.datastax.oss.driver.api.core.type.DataType type, Ordering ordering) Adds the given primary key column to the table with ascending ordering.TableSpecification.clusteredKeyColumn
(String name, com.datastax.oss.driver.api.core.type.DataType type, Ordering ordering) Adds the given primary key column to the table with ascending ordering.protected T
TableSpecification.column
(String name, com.datastax.oss.driver.api.core.type.DataType type, PrimaryKeyType keyType, Ordering ordering) Adds the given info as a new column to the table.Sets the column'sColumnSpecification.ordering
.Method parameters in org.springframework.data.cassandra.core.cql.keyspace with type arguments of type OrderingModifier and TypeMethodDescriptionTableSpecification.clusteredKeyColumn
(com.datastax.oss.driver.api.core.CqlIdentifier name, com.datastax.oss.driver.api.core.type.DataType type, Optional<Ordering> ordering) Adds the given primary key column to the table with ascending ordering.protected T
TableSpecification.column
(String name, com.datastax.oss.driver.api.core.type.DataType type, PrimaryKeyType keyType, Optional<Ordering> ordering) Adds the given info as a new column to the table. -
Uses of Ordering in org.springframework.data.cassandra.core.mapping
Methods in org.springframework.data.cassandra.core.mapping that return OrderingModifier and TypeMethodDescriptionBasicCassandraPersistentProperty.getPrimaryKeyOrdering()
BasicCassandraPersistentTupleProperty.getPrimaryKeyOrdering()
CachingCassandraPersistentProperty.getPrimaryKeyOrdering()
CassandraPersistentProperty.getPrimaryKeyOrdering()
The ordering (ascending or descending) for the column.