Class IndexedTermCounts
- java.lang.Object
-
- com.funnelback.publicui.search.model.padre.IndexedTermCounts
-
public class IndexedTermCounts extends Object
Holds the count of each indexed term for a metadata class 'metadataClass'.
- Since:
- 15.10
-
-
Field Summary
Fields Modifier and Type Field Description private String
metadataClass
The metadata class the terms are indexed under.private Map<String,Long>
termAndOccurrences
Holds the count of occurrences of each term in the metadata class in the result set.
-
Constructor Summary
Constructors Constructor Description IndexedTermCounts()
-
-
-
Field Detail
-
metadataClass
private final String metadataClass
The metadata class the terms are indexed under.
- Since:
- 15.10
-
termAndOccurrences
private final Map<String,Long> termAndOccurrences
Holds the count of occurrences of each term in the metadata class in the result set.
The Key is the indexed term (which may be truncated as per the indexer options used). The Value is the number of times the term appears in the metadata class in the result set of the query run.
- Since:
- 15.10
-
-