Uses of Class
com.couchbase.client.java.manager.query.DropQueryIndexOptions
-
Packages that use DropQueryIndexOptions Package Description com.couchbase.client.java.manager.query APIs related to N1QL query index management. -
-
Uses of DropQueryIndexOptions in com.couchbase.client.java.manager.query
Methods in com.couchbase.client.java.manager.query that return DropQueryIndexOptions Modifier and Type Method Description DropQueryIndexOptionsDropQueryIndexOptions. collectionName(String collectionName)Deprecated.`collection.queryIndexes()` should now be used for collection-related query index operations.static DropQueryIndexOptionsDropQueryIndexOptions. dropQueryIndexOptions()Creates a new instance with default values.DropQueryIndexOptionsDropQueryIndexOptions. ignoreIfNotExists(boolean ignore)If the index does not exist, an exception will be thrown unless this is set to true.DropQueryIndexOptionsDropQueryIndexOptions. scopeName(String scopeName)Deprecated.`collection.queryIndexes()` should now be used for collection-related query index operations.Methods in com.couchbase.client.java.manager.query with parameters of type DropQueryIndexOptions Modifier and Type Method Description CompletableFuture<Void>AsyncCollectionQueryIndexManager. dropIndex(String indexName, DropQueryIndexOptions options)Drops a query index from this collection with custom options.CompletableFuture<Void>AsyncQueryIndexManager. dropIndex(String bucketName, String indexName, DropQueryIndexOptions options)Drops a query index from a bucket with custom options.voidCollectionQueryIndexManager. dropIndex(String indexName, DropQueryIndexOptions options)Drops a query index from this collection with custom options.voidQueryIndexManager. dropIndex(String bucketName, String indexName, DropQueryIndexOptions options)Drops a query index from a bucket with custom options.Mono<Void>ReactiveCollectionQueryIndexManager. dropIndex(String indexName, DropQueryIndexOptions options)Drops a query index from this collection with custom options.Mono<Void>ReactiveQueryIndexManager. dropIndex(String bucketName, String indexName, DropQueryIndexOptions options)Drops a query index from a bucket with custom options.
-