Examples of AssociationsPayloadIterator


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

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

    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
Copyright © 2018 www.massapi.com. 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.