Example usage for org.apache.solr.search DelegatingCollector subclass-usage

List of usage examples for org.apache.solr.search DelegatingCollector subclass-usage

Introduction

In this page you can find the example usage for org.apache.solr.search DelegatingCollector subclass-usage.

Usage

From source file alba.solr.core.DynamicDelegatingCollector.java

public class DynamicDelegatingCollector extends DelegatingCollector {

    DynamicQuery dynamicQuery;

    Logger logger = LoggerFactory.getLogger(this.getClass().getName());

From source file org.alfresco.solr.query.AllAccessCollector.java

public class AllAccessCollector extends DelegatingCollector {
    public boolean acceptsDocsOutOfOrder() {
        return false;
    }
}

From source file org.alfresco.solr.query.ContentSizeGroupingCollector.java

/**
 * @author Andy
 *
 */
public class ContentSizeGroupingCollector extends DelegatingCollector {
    ResponseBuilder rb;

From source file org.alfresco.solr.query.MimetypeGroupingCollector.java

/**
 * @author Andy
 *
 */
public class MimetypeGroupingCollector extends DelegatingCollector {
    HashMap<String, Counter> counters = new HashMap<String, Counter>();

From source file org.apache.lucene.analysis.tanimoto.TanimotoCollector.java

public class TanimotoCollector extends DelegatingCollector /*Collector*/ {

    private float threshold;
    int maxdoc;

    public TanimotoCollector(float threshold) {

From source file org.codice.solr.xpath.XpathFilterCollector.java

/**
 * Collector that evaluates each Lucene document against a given XPath
 * and collects the results that match.
 */
public class XpathFilterCollector extends DelegatingCollector {

From source file org.vootoo.search.FilterCollector.java

public class FilterCollector extends DelegatingCollector {

    protected final CollectorFilterable filter;
    @SuppressWarnings("rawtypes")
    protected final Map fcontext;
    int maxdoc;