Package org.apache.lucene.facet.search.aggregator

Examples of org.apache.lucene.facet.search.aggregator.ComplementCountingAggregator


                                      FacetArrays arrays, IndexReader reader,
                                      TaxonomyReader taxonomy) {
    // we rely on that, if needed, result is cleared by arrays!
    int[] a = arrays.getIntArray();
    if (useComplements) {
      return new ComplementCountingAggregator(a);
    }
    return new CountingAggregator(a);
  }
View Full Code Here

TOP

Related Classes of org.apache.lucene.facet.search.aggregator.ComplementCountingAggregator

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.