Class DropIndexSpecification
java.lang.Object
org.springframework.data.cassandra.core.cql.keyspace.IndexNameSpecification<DropIndexSpecification>
org.springframework.data.cassandra.core.cql.keyspace.DropIndexSpecification
Value object representing a
DROP INDEX
specification.- Author:
- Matthew T. Adams, David Webb, Mark Paluch
-
Method Summary
Modifier and TypeMethodDescriptionstatic DropIndexSpecification
dropIndex
(com.datastax.oss.driver.api.core.CqlIdentifier indexName) Create a newDropIndexSpecification
for the givenindexName
.static DropIndexSpecification
Create a newDropIndexSpecification
for the givenindexName
.Methods inherited from class org.springframework.data.cassandra.core.cql.keyspace.IndexNameSpecification
getName
-
Method Details
-
dropIndex
Create a newDropIndexSpecification
for the givenindexName
.- Parameters:
indexName
- must not be null or empty.- Returns:
- a new
DropIndexSpecification
.
-
dropIndex
public static DropIndexSpecification dropIndex(com.datastax.oss.driver.api.core.CqlIdentifier indexName) Create a newDropIndexSpecification
for the givenindexName
.- Parameters:
indexName
- must not be null.- Returns:
- a new
DropIndexSpecification
.
-