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