Package lumis.portal.bigdata.query
Interface ISearchResults
-
@StableMinor(version="16.0", sinceVersion="9.0") public interface ISearchResults
- Since:
- 8.1.0
- Version:
- $Revision: 25808 $ $Date: 2023-07-04 15:20:55 -0300 (Tue, 04 Jul 2023) $
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.util.Map<java.lang.String,IAggregationResult>
getAggregations()
Returns the aggregation results (unmodifiable) map.java.util.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
java.util.List<ISearchHit> getHits()
Returns a list ofhits
.- Returns:
- a list of
hits
. - Since:
- 8.1.0
-
getAggregations
java.util.Map<java.lang.String,IAggregationResult> getAggregations()
Returns the aggregation results (unmodifiable) map.- Returns:
- the aggregation results (unmodifiable) map.
- Since:
- 9.0.0
-
-