Uses of Interface
com.couchbase.client.java.search.result.SearchQueryRow
-
Packages that use SearchQueryRow Package Description com.couchbase.client.java.search.result com.couchbase.client.java.search.result.impl -
-
Uses of SearchQueryRow in com.couchbase.client.java.search.result
Methods in com.couchbase.client.java.search.result that return types with arguments of type SearchQueryRow Modifier and Type Method Description rx.Observable<SearchQueryRow>
AsyncSearchQueryResult. hits()
AnObservable
ofrows
(or hits) describing each individual result.List<SearchQueryRow>
SearchQueryResult. hits()
The list of FTS result rows, or "hits", for the FTS query.List<SearchQueryRow>
SearchQueryResult. hitsOrFail()
The list of FTS result rows, or "hits", for the FTS query.Iterator<SearchQueryRow>
SearchQueryResult. iterator()
Returns an iterator over the hits (SearchQueryRow
). -
Uses of SearchQueryRow in com.couchbase.client.java.search.result.impl
Classes in com.couchbase.client.java.search.result.impl that implement SearchQueryRow Modifier and Type Class Description class
DefaultSearchQueryRow
The default implementation for aSearchQueryRow
Methods in com.couchbase.client.java.search.result.impl that return types with arguments of type SearchQueryRow Modifier and Type Method Description rx.Observable<SearchQueryRow>
DefaultAsyncSearchQueryResult. hits()
List<SearchQueryRow>
DefaultSearchQueryResult. hits()
List<SearchQueryRow>
DefaultSearchQueryResult. hitsOrFail()
Iterator<SearchQueryRow>
DefaultSearchQueryResult. iterator()
Constructor parameters in com.couchbase.client.java.search.result.impl with type arguments of type SearchQueryRow Constructor Description DefaultAsyncSearchQueryResult(SearchStatus status, rx.Observable<SearchQueryRow> hits, rx.Observable<FacetResult> facets, rx.Observable<SearchMetrics> metrics)
DefaultSearchQueryResult(SearchStatus status, List<SearchQueryRow> hits, Throwable error, Map<String,FacetResult> facets, SearchMetrics metrics)
-