Uses of Class
com.couchbase.client.java.search.result.SearchRow
Package | Description |
---|---|
com.couchbase.client.java.search.result |
Holds search result classes and interfaces.
|
-
Uses of SearchRow in com.couchbase.client.java.search.result
Methods in com.couchbase.client.java.search.result that return SearchRow Modifier and Type Method Description static SearchRow
SearchRow. fromResponse(SearchChunkRow row, JsonSerializer serializer)
Methods in com.couchbase.client.java.search.result that return types with arguments of type SearchRow Modifier and Type Method Description Flux<SearchRow>
ReactiveSearchResult. rows()
The list of FTS result rows for the FTS query, in the form of a reactiveFlux
publisher.List<SearchRow>
SearchResult. rows()
Returns all search hits.Constructor parameters in com.couchbase.client.java.search.result with type arguments of type SearchRow Constructor Description ReactiveSearchResult(Flux<SearchRow> rows, Mono<Map<String,SearchFacetResult>> facets, Mono<SearchMetaData> meta)
SearchResult(List<SearchRow> rows, Map<String,SearchFacetResult> facets, SearchMetaData meta)
Creates a new SearchResult.