Uses of Class
com.couchbase.client.java.manager.search.SearchIndex
-
Packages that use SearchIndex Package Description com.couchbase.client.java.manager.search -
-
Uses of SearchIndex in com.couchbase.client.java.manager.search
Methods in com.couchbase.client.java.manager.search that return SearchIndex Modifier and Type Method Description static SearchIndex
SearchIndex. fromJson(String input)
Takes a encoded index definition and turns it into aSearchIndex
which can be used.SearchIndex
SearchIndexManager. getIndex(String name)
Fetches an index from the server if it exists.SearchIndex
SearchIndexManager. getIndex(String name, GetSearchIndexOptions options)
Fetches an index from the server if it exists.SearchIndex
SearchIndex. params(Map<String,Object> params)
SearchIndex
SearchIndex. planParams(Map<String,Object> planParams)
SearchIndex
SearchIndex. sourceParams(Map<String,Object> sourceParams)
SearchIndex
SearchIndex. sourceType(String sourceType)
SearchIndex
SearchIndex. sourceUuid(String sourceUuid)
SearchIndex
SearchIndex. unsetUuid()
Allows to unset the UUID from an index definition.SearchIndex
SearchIndex. uuid(String uuid)
Methods in com.couchbase.client.java.manager.search that return types with arguments of type SearchIndex Modifier and Type Method Description CompletableFuture<List<SearchIndex>>
AsyncSearchIndexManager. getAllIndexes()
Fetches all indexes from the server.CompletableFuture<List<SearchIndex>>
AsyncSearchIndexManager. getAllIndexes(GetAllSearchIndexesOptions options)
Fetches all indexes from the server.Flux<SearchIndex>
ReactiveSearchIndexManager. getAllIndexes()
Fetches all indexes from the server.Flux<SearchIndex>
ReactiveSearchIndexManager. getAllIndexes(GetAllSearchIndexesOptions options)
Fetches all indexes from the server.List<SearchIndex>
SearchIndexManager. getAllIndexes()
Fetches all indexes from the server.List<SearchIndex>
SearchIndexManager. getAllIndexes(GetAllSearchIndexesOptions options)
Fetches all indexes from the server.CompletableFuture<SearchIndex>
AsyncSearchIndexManager. getIndex(String name)
Fetches an index from the server if it exists.CompletableFuture<SearchIndex>
AsyncSearchIndexManager. getIndex(String name, GetSearchIndexOptions options)
Fetches an index from the server if it exists.Mono<SearchIndex>
ReactiveSearchIndexManager. getIndex(String name)
Fetches an index from the server if it exists.Mono<SearchIndex>
ReactiveSearchIndexManager. getIndex(String name, GetSearchIndexOptions options)
Fetches an index from the server if it exists.Methods in com.couchbase.client.java.manager.search with parameters of type SearchIndex Modifier and Type Method Description CompletableFuture<Void>
AsyncSearchIndexManager. upsertIndex(SearchIndex index)
Creates, or updates, an index.CompletableFuture<Void>
AsyncSearchIndexManager. upsertIndex(SearchIndex index, UpsertSearchIndexOptions options)
Creates, or updates, an index.Mono<Void>
ReactiveSearchIndexManager. upsertIndex(SearchIndex index)
Creates, or updates, an index.Mono<Void>
ReactiveSearchIndexManager. upsertIndex(SearchIndex index, UpsertSearchIndexOptions options)
Creates, or updates, an index.void
SearchIndexManager. upsertIndex(SearchIndex index)
Creates, or updates, an index.void
SearchIndexManager. upsertIndex(SearchIndex index, UpsertSearchIndexOptions options)
Creates, or updates, an index.
-