Class SearchResult
- java.lang.Object
-
- com.couchbase.client.java.search.result.SearchResult
-
public class SearchResult extends Object
The result of an search query, including hits and associated metadata.- Since:
- 3.0
-
-
Constructor Summary
Constructors Constructor Description SearchResult(CoreSearchResult internal, JsonSerializer serializer)
Creates a new SearchResult.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Map<String,SearchFacetResult>
facets()
Returns the facets if present in this query.SearchMetaData
metaData()
Returns theSearchMetaData
giving access to the additional metadata associated with this search query.List<SearchRow>
rows()
Returns all search hits.String
toString()
-
-
-
Constructor Detail
-
SearchResult
public SearchResult(CoreSearchResult internal, JsonSerializer serializer)
Creates a new SearchResult.
-
-
Method Detail
-
metaData
public SearchMetaData metaData()
Returns theSearchMetaData
giving access to the additional metadata associated with this search query.
-
facets
public Map<String,SearchFacetResult> facets()
Returns the facets if present in this query.
-
-