Uses of Class
com.couchbase.client.java.manager.query.DropQueryIndexOptions
Package
Description
APIs related to N1QL query index management.
-
Uses of DropQueryIndexOptions in com.couchbase.client.java.manager.query
Modifier and TypeMethodDescriptionDropQueryIndexOptions.collectionName
(String collectionName) Deprecated.`collection.queryIndexes()` should now be used for collection-related query index operations.static DropQueryIndexOptions
DropQueryIndexOptions.dropQueryIndexOptions()
Creates a new instance with default values.DropQueryIndexOptions.ignoreIfNotExists
(boolean ignore) If the index does not exist, an exception will be thrown unless this is set to true.Deprecated.`collection.queryIndexes()` should now be used for collection-related query index operations.Modifier and TypeMethodDescriptionAsyncCollectionQueryIndexManager.dropIndex
(String indexName, DropQueryIndexOptions options) Drops a query index from this collection with custom options.AsyncQueryIndexManager.dropIndex
(String bucketName, String indexName, DropQueryIndexOptions options) Drops a query index from a bucket with custom options.void
CollectionQueryIndexManager.dropIndex
(String indexName, DropQueryIndexOptions options) Drops a query index from this collection with custom options.void
QueryIndexManager.dropIndex
(String bucketName, String indexName, DropQueryIndexOptions options) Drops a query index from a bucket with custom options.ReactiveCollectionQueryIndexManager.dropIndex
(String indexName, DropQueryIndexOptions options) Drops a query index from this collection with custom options.ReactiveQueryIndexManager.dropIndex
(String bucketName, String indexName, DropQueryIndexOptions options) Drops a query index from a bucket with custom options.