Package lumis.portal.bigdata.query
Interface ISearchResults
-
@StableMinor(version="14.0", sinceVersion="9.0") public interface ISearchResults
- Since:
- 8.1.0
- Version:
- $Revision: 24477 $ $Date: 2021-04-28 11:30:36 -0300 (Wed, 28 Apr 2021) $
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Map<String,IAggregationResult>
getAggregations()
Returns the aggregation results (unmodifiable) map.List<ISearchHit>
getHits()
Returns a list ofhits
.long
getTotalHits()
Returns the number ofhits
in the collection.
-
-
-
Method Detail
-
getTotalHits
long getTotalHits()
Returns the number ofhits
in the collection.- Returns:
- the number of
hits
in the collection. - Since:
- 8.1.0
-
getHits
List<ISearchHit> getHits()
Returns a list ofhits
.- Returns:
- a list of
hits
. - Since:
- 8.1.0
-
getAggregations
Map<String,IAggregationResult> getAggregations()
Returns the aggregation results (unmodifiable) map.- Returns:
- the aggregation results (unmodifiable) map.
- Since:
- 9.0.0
-
-