Uses of Interface
org.apache.lucene.queryParser.QueryParserConstants
-
Packages that use QueryParserConstants Package Description org.apache.lucene.queryParser A simple query parser implemented with JavaCC.org.apache.lucene.queryParser.analyzing QueryParser that passes Fuzzy-, Prefix-, Range-, and WildcardQuerys through the given analyzer.org.apache.lucene.queryParser.complexPhrase QueryParser which permits complex phrase query syntax eg "(john jon jonathan~) peters*"org.apache.lucene.queryParser.ext Extendable QueryParser provides a simple and flexible extension mechanism by overloading query field names. -
-
Uses of QueryParserConstants in org.apache.lucene.queryParser
Classes in org.apache.lucene.queryParser that implement QueryParserConstants Modifier and Type Class Description class
MultiFieldQueryParser
A QueryParser which constructs queries to search multiple fields.class
QueryParser
This class is generated by JavaCC.static class
QueryParserTestBase.QPTestParser
Test QueryParser that does not allow fuzzy or wildcard queries.class
QueryParserTokenManager
Token Manager. -
Uses of QueryParserConstants in org.apache.lucene.queryParser.analyzing
Classes in org.apache.lucene.queryParser.analyzing that implement QueryParserConstants Modifier and Type Class Description class
AnalyzingQueryParser
Overrides Lucene's default QueryParser so that Fuzzy-, Prefix-, Range-, and WildcardQuerys are also passed through the given analyzer, but wild card characters (like*
) don't get removed from the search terms. -
Uses of QueryParserConstants in org.apache.lucene.queryParser.complexPhrase
Classes in org.apache.lucene.queryParser.complexPhrase that implement QueryParserConstants Modifier and Type Class Description class
ComplexPhraseQueryParser
QueryParser which permits complex phrase query syntax eg "(john jon jonathan~) peters*". -
Uses of QueryParserConstants in org.apache.lucene.queryParser.ext
Classes in org.apache.lucene.queryParser.ext that implement QueryParserConstants Modifier and Type Class Description class
ExtendableQueryParser
TheExtendableQueryParser
enables arbitrary query parser extension based on a customizable field naming scheme.
-