Package lumis.portal.bigdata.query
Interface ISearchResults
-
@StableMinor(version="14.2", sinceVersion="9.0") public interface ISearchResults
- Since:
- 8.1.0
- Version:
- $Revision: 24985 $ $Date: 2022-05-02 23:04:30 -0300 (Mon, 02 May 2022) $
-
-
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
-
-