Package org.apache.lucene.facet.enhancements.association

Examples of org.apache.lucene.facet.enhancements.association.AssociationsPayloadIterator


    this(CategoryListParams.DEFAULT_TERM.field(), reader, sumArray);
  }
 
  public AssociationFloatSumAggregator(String field, IndexReader reader, float[] sumArray) throws IOException {
    this.field = field;
    associationsPayloadIterator = new AssociationsPayloadIterator(reader, field);
    this.sumArray = sumArray;
  }
View Full Code Here


    this(CategoryListParams.DEFAULT_TERM.field(), reader, sumArray);
  }
 
  public AssociationIntSumAggregator(String field, IndexReader reader, int[] sumArray) throws IOException {
    this.field = field;
    associationsPayloadIterator = new AssociationsPayloadIterator(reader, field);
    this.sumArray = sumArray;
  }
View Full Code Here

TOP

Related Classes of org.apache.lucene.facet.enhancements.association.AssociationsPayloadIterator

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.