Uses of Class
com.couchbase.client.java.manager.query.GetAllQueryIndexesOptions
-
Packages that use GetAllQueryIndexesOptions Package Description com.couchbase.client.java.manager.query APIs related to N1QL query index management. -
-
Uses of GetAllQueryIndexesOptions in com.couchbase.client.java.manager.query
Methods in com.couchbase.client.java.manager.query that return GetAllQueryIndexesOptions Modifier and Type Method Description GetAllQueryIndexesOptions
GetAllQueryIndexesOptions. collectionName(String collectionName)
Deprecated.`collection.queryIndexes()` should now be used for collection-related query index operations.static GetAllQueryIndexesOptions
GetAllQueryIndexesOptions. getAllQueryIndexesOptions()
Creates a new instance with default values.GetAllQueryIndexesOptions
GetAllQueryIndexesOptions. 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 GetAllQueryIndexesOptions Modifier and Type Method Description CompletableFuture<List<QueryIndex>>
AsyncCollectionQueryIndexManager. getAllIndexes(GetAllQueryIndexesOptions options)
Fetches all indexes from this collection with custom options.CompletableFuture<List<QueryIndex>>
AsyncQueryIndexManager. getAllIndexes(String bucketName, GetAllQueryIndexesOptions options)
Fetches all indexes from the bucket with custom options.List<QueryIndex>
CollectionQueryIndexManager. getAllIndexes(GetAllQueryIndexesOptions options)
Fetches all indexes from this collection with custom options.List<QueryIndex>
QueryIndexManager. getAllIndexes(String bucketName, GetAllQueryIndexesOptions options)
Fetches all indexes from the bucket with custom options.Flux<QueryIndex>
ReactiveCollectionQueryIndexManager. getAllIndexes(GetAllQueryIndexesOptions options)
Fetches all indexes from this collection with custom options.Flux<QueryIndex>
ReactiveQueryIndexManager. getAllIndexes(String bucketName, GetAllQueryIndexesOptions options)
Fetches all indexes from the bucket with custom options.
-