Uses of Class
org.apache.lucene.queryParser.QueryParser
-
Packages that use QueryParser Package Description org.apache.lucene.benchmark.byTask.feeds Sources for benchmark inputs: documents and queries.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.org.apache.lucene.xmlparser Parser that produces Lucene Query objects from XML streams.org.apache.lucene.xmlparser.builders Builders to support various Lucene queries. -
-
Uses of QueryParser in org.apache.lucene.benchmark.byTask.feeds
Fields in org.apache.lucene.benchmark.byTask.feeds declared as QueryParser Modifier and Type Field Description protected QueryParserLongToEnglishQueryMaker. parser -
Uses of QueryParser in org.apache.lucene.queryParser
Subclasses of QueryParser in org.apache.lucene.queryParser Modifier and Type Class Description classMultiFieldQueryParserA QueryParser which constructs queries to search multiple fields.static classQueryParserTestBase.QPTestParserTest QueryParser that does not allow fuzzy or wildcard queries.Methods in org.apache.lucene.queryParser that return QueryParser Modifier and Type Method Description abstract QueryParserQueryParserTestBase. getParser(Analyzer a)Methods in org.apache.lucene.queryParser with parameters of type QueryParser Modifier and Type Method Description voidQueryParserTestBase. assertDateRangeQueryEquals(QueryParser qp, String field, String startDate, String endDate, Date endDateInclusive, DateTools.Resolution resolution)voidQueryParserTestBase. assertQueryEquals(QueryParser qp, String field, String query, String result) -
Uses of QueryParser in org.apache.lucene.queryParser.analyzing
Subclasses of QueryParser in org.apache.lucene.queryParser.analyzing Modifier and Type Class Description classAnalyzingQueryParserOverrides 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 QueryParser in org.apache.lucene.queryParser.complexPhrase
Subclasses of QueryParser in org.apache.lucene.queryParser.complexPhrase Modifier and Type Class Description classComplexPhraseQueryParserQueryParser which permits complex phrase query syntax eg "(john jon jonathan~) peters*". -
Uses of QueryParser in org.apache.lucene.queryParser.ext
Subclasses of QueryParser in org.apache.lucene.queryParser.ext Modifier and Type Class Description classExtendableQueryParserTheExtendableQueryParserenables arbitrary query parser extension based on a customizable field naming scheme.Methods in org.apache.lucene.queryParser.ext that return QueryParser Modifier and Type Method Description QueryParserExtensionQuery. getTopLevelParser()Returns the top level parser which created thisExtensionQueryConstructors in org.apache.lucene.queryParser.ext with parameters of type QueryParser Constructor Description ExtensionQuery(QueryParser topLevelParser, String field, String rawQueryString)Creates a newExtensionQuery -
Uses of QueryParser in org.apache.lucene.xmlparser
Fields in org.apache.lucene.xmlparser declared as QueryParser Modifier and Type Field Description protected QueryParserCoreParser. parserConstructors in org.apache.lucene.xmlparser with parameters of type QueryParser Constructor Description CoreParser(String defaultField, Analyzer analyzer, QueryParser parser)CoreParser(Analyzer analyzer, QueryParser parser)Construct an XML parser that uses a single instance QueryParser for handling UserQuery tags - all parse operations are synchronised on this parserCorePlusExtensionsParser(Analyzer analyzer, QueryParser parser)Construct an XML parser that uses a single instance QueryParser for handling UserQuery tags - all parse operations are synchronized on this parser -
Uses of QueryParser in org.apache.lucene.xmlparser.builders
Methods in org.apache.lucene.xmlparser.builders that return QueryParser Modifier and Type Method Description protected QueryParserUserInputQueryBuilder. createQueryParser(String fieldName, Analyzer analyzer)Method to create a QueryParser - designed to be overriddenConstructors in org.apache.lucene.xmlparser.builders with parameters of type QueryParser Constructor Description UserInputQueryBuilder(QueryParser parser)This constructor has the disadvantage of not being able to change choice of default field name
-