List of usage examples for org.apache.lucene.queryparser.flexible.standard CommonQueryParserConfiguration interface-usage
From source file jp.scaleout.elasticsearch.plugins.queryparser.classic.QueryParserBase.java
/** This class is overridden by QueryParser in QueryParser.jj * and acts to separate the majority of the Java code from the .jj grammar file. */ public abstract class QueryParserBase extends QueryBuilder implements CommonQueryParserConfiguration { /** Do not catch this exception in your code, it means you are using methods that you should no longer use. */
From source file org.allenai.blacklab.queryParser.lucene.QueryParserBase.java
/** This class is overridden by QueryParser in QueryParser.jj * and acts to separate the majority of the Java code from the .jj grammar file. */ @SuppressWarnings({ "all" }) // BL: "resource" because of possible resource leak public abstract class QueryParserBase implements CommonQueryParserConfiguration {
From source file org.tallison.lucene.queryparser.spans.SQPTestingConfig.java
public class SQPTestingConfig implements CommonQueryParserConfiguration { private boolean lowercaseExpandedTerms; private boolean allowLeadingWildcard; private boolean enablePositionIncrements; private MultiTermQuery.RewriteMethod multiTermRewriteMethod = MultiTermQuery.CONSTANT_SCORE_REWRITE;