Class ResultsSummary
- java.lang.Object
-
- com.funnelback.publicui.search.model.padre.ResultsSummary
-
public class ResultsSummary extends Object
Search result summary, with document counts and information about the current page returned.- Since:
- 11.0
-
-
Field Summary
Fields Modifier and Type Field Description private booleananyUrlsPromotedAre any URLs promoted (includes URLs that may have been later removed or collapsed).private IntegercarriedOverFtdNumber of events continued from the day when using event search.private IntegercollapsedNumber of collapsed resultsprivate IntegercurrEndCurrent offset of the last result returned.private IntegercurrStartCurrent offset of the first result returned.private BooleanestimatedCountsWhether the counts within this summary have been estimated.private IntegerfullyMatchingNumber of documents that fully matched the query terms.private IntegernextStartOffset of the first result of the next page of results.private IntegernumRanksNumber of results returned.private IntegerpartiallyMatchingNumber of documents that partially matched the query terms.private IntegerprevStartOffset of the first result of the previous page of results.private booleanresultDiversificationAppliedWas any result affected by result diversification.private IntegertotalDistinctMatchingUrlsNumber of distinct URLs when using event search.private IntegertotalMatchingTotal number of documents matching the query terms, fully or partially.private IntegertotalSecurityObscuredUrlsThe number of results which are not viewable to the user
-
Constructor Summary
Constructors Constructor Description ResultsSummary()
-
-
-
Field Detail
-
fullyMatching
private Integer fullyMatching
Number of documents that fully matched the query terms.
-
collapsed
private Integer collapsed
Number of collapsed results
-
partiallyMatching
private Integer partiallyMatching
Number of documents that partially matched the query terms.
-
totalMatching
private Integer totalMatching
Total number of documents matching the query terms, fully or partially.
Should be
fullyMatching+partiallyMatching.
-
estimatedCounts
private Boolean estimatedCounts
Whether the counts within this summary have been estimated.
Estimation occurs when the result set is only partially scanned (e.g. more results are found than the daat value).
-
carriedOverFtd
private Integer carriedOverFtd
Number of events continued from the day when using event search.
See the
-eventsquery processor options.
-
totalDistinctMatchingUrls
private Integer totalDistinctMatchingUrls
Number of distinct URLs when using event search.
See the
-eventsquery processor options.
-
numRanks
private Integer numRanks
Number of results returned.
-
currStart
private Integer currStart
Current offset of the first result returned.
For example if the second page of results was returned and 10 results were requested, this will be set to 11.
See:
start_rankparameter,num_ranksparameter.
-
currEnd
private Integer currEnd
Current offset of the last result returned.
For example if the second page of results was returned and 10 results were requested, this will be set to 20.
See:
start_rankparameter,num_ranksparameter.
-
prevStart
private Integer prevStart
Offset of the first result of the previous page of results.
For example if the second page of results was returned and 10 results were requested, this will be set to 1.
See:
start_rankparameter,num_ranksparameter.
-
nextStart
private Integer nextStart
Offset of the first result of the next page of results.
For example if the second page of results was returned and 10 results were requested, this will be set to 21.
See:
start_rankparameter,num_ranksparameter.
-
totalSecurityObscuredUrls
private Integer totalSecurityObscuredUrls
The number of results which are not viewable to the user
Only set when Translucent DLS is enabled.
-
anyUrlsPromoted
private boolean anyUrlsPromoted
Are any URLs promoted (includes URLs that may have been later removed or collapsed).- Since:
- 15.12
-
resultDiversificationApplied
private boolean resultDiversificationApplied
Was any result affected by result diversification.- Since:
- 15.12
-
-