org.apache.lucene.facet.search.aggregator.association
Class AssociationIntSumAggregator
java.lang.Object
org.apache.lucene.facet.search.aggregator.association.AssociationIntSumAggregator
- All Implemented Interfaces:
- Aggregator
public class AssociationIntSumAggregator
- extends Object
- implements Aggregator
An Aggregator
which updates the weight of a category by summing the
weights of the integer association it finds for every document.
- WARNING: This API is experimental and might change in incompatible ways in the next release.
Method Summary |
void |
aggregate(int ordinal)
Collect (and do whatever an implementation deems appropriate) the
category given by its ordinal. |
boolean |
equals(Object obj)
|
int |
hashCode()
|
void |
setNextDoc(int docid,
float score)
Specify the document (and its score in the search) that the following
Aggregator.aggregate(int) calls will pertain to. |
field
protected final String field
sumArray
protected final int[] sumArray
associationsPayloadIterator
protected final AssociationsPayloadIterator associationsPayloadIterator
AssociationIntSumAggregator
public AssociationIntSumAggregator(IndexReader reader,
int[] sumArray)
throws IOException
- Throws:
IOException
AssociationIntSumAggregator
public AssociationIntSumAggregator(String field,
IndexReader reader,
int[] sumArray)
throws IOException
- Throws:
IOException
aggregate
public void aggregate(int ordinal)
- Description copied from interface:
Aggregator
- Collect (and do whatever an implementation deems appropriate) the
category given by its ordinal. This category belongs to a document
given earlier by
Aggregator.setNextDoc(int, float)
.
- Specified by:
aggregate
in interface Aggregator
equals
public boolean equals(Object obj)
- Overrides:
equals
in class Object
hashCode
public int hashCode()
- Overrides:
hashCode
in class Object
setNextDoc
public void setNextDoc(int docid,
float score)
throws IOException
- Description copied from interface:
Aggregator
- Specify the document (and its score in the search) that the following
Aggregator.aggregate(int)
calls will pertain to.
- Specified by:
setNextDoc
in interface Aggregator
- Throws:
IOException