querqy.lucene.rewrite.TermQueryBuilder Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of querqy-lucene Show documentation
Show all versions of querqy-lucene Show documentation
Querqy library for query rewriting for Lucene
The newest version!
package querqy.lucene.rewrite;
import org.apache.lucene.index.Term;
import org.apache.lucene.search.TermQuery;
import java.util.Optional;
public interface TermQueryBuilder {
Optional getDocumentFrequencyCorrection();
TermQuery createTermQuery(Term term, FieldBoost boost);
}