All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.browseengine.bobo.query.ScorerBuilder Maven / Gradle / Ivy

Go to download

Bobo is a Faceted Search implementation written purely in Java, an extension of Apache Lucene

The newest version!
package com.browseengine.bobo.query;

import java.io.IOException;

import org.apache.lucene.index.AtomicReader;
import org.apache.lucene.search.Explanation;
import org.apache.lucene.search.Scorer;

public interface ScorerBuilder {
  Scorer createScorer(Scorer innerScorer, AtomicReader reader, boolean scoreDocsInOrder,
      boolean topScorer) throws IOException;

  Explanation explain(AtomicReader reader, int doc, Explanation innerExplaination)
      throws IOException;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy