Example usage for org.apache.lucene.search Collector interface-usage

List of usage examples for org.apache.lucene.search Collector interface-usage

Introduction

In this page you can find the example usage for org.apache.lucene.search Collector interface-usage.

Usage

From source file com.qwazr.search.index.FunctionCollector.java

public class FunctionCollector implements Collector {

    private final FieldTypeInterface fieldType;

    final QueryDefinition.Function function;

From source file org.apache.solr.search.join.GraphTermsCollector.java

/**
 * A graph hit collector.  This accumulates the edges for a given graph traversal.
 * On each collect method, the collector skips edge extraction for nodes that it has
 * already traversed.
 * @lucene.internal
 */

From source file org.codelibs.elasticsearch.common.lucene.search.FilteredCollector.java

/**
 *
 */
public class FilteredCollector implements Collector {

    private final Collector collector;

From source file org.codelibs.elasticsearch.search.aggregations.BucketCollector.java

/**
 * A Collector that can collect data in separate buckets.
 */
public abstract class BucketCollector implements Collector {

    public static final BucketCollector NO_OP_COLLECTOR = new BucketCollector() {

From source file org.codelibs.elasticsearch.search.profile.query.InternalProfileCollector.java

/**
 * This class wraps a Lucene Collector and times the execution of:
 * - setScorer()
 * - collect()
 * - doSetNextReader()
 * - needsScores()

From source file org.elasticsearch.search.aggregations.BucketCollector.java

/**
 * A Collector that can collect data in separate buckets.
 */
public abstract class BucketCollector implements Collector {

    public final static BucketCollector NO_OP_COLLECTOR = new BucketCollector() {

From source file org.elasticsearch.search.profile.InternalProfileCollector.java

/**
 * This class wraps a Lucene Collector and times the execution of:
 * - setScorer()
 * - collect()
 * - doSetNextReader()
 * - needsScores()

From source file org.elasticsearch.search.profile.query.InternalProfileCollector.java

/**
 * This class wraps a Lucene Collector and times the execution of:
 * - setScorer()
 * - collect()
 * - doSetNextReader()
 * - needsScores()

From source file sh.isaac.provider.query.lucene.indexers.NoScoreCollector.java

/**
 *
 * @author kec
 */
public class NoScoreCollector implements Collector {
    final SequenceSet docIds = new SequenceSet();