Uses of Class
org.apache.lucene.queryParser.ParseException

Packages that use ParseException
org.apache.lucene.queryParser A simple query parser implemented with JavaCC. 
 

Uses of ParseException in org.apache.lucene.queryParser
 

Methods in org.apache.lucene.queryParser that return ParseException
 ParseException QueryParser.generateParseException()
          Generate ParseException.
 

Methods in org.apache.lucene.queryParser that throw ParseException
 Query QueryParser.Clause(String field)
           
 int QueryParser.Conjunction()
           
protected  Query QueryParser.getBooleanQuery(List<BooleanClause> clauses)
          Factory method for generating query, given a set of clauses.
protected  Query QueryParser.getBooleanQuery(List<BooleanClause> clauses, boolean disableCoord)
          Factory method for generating query, given a set of clauses.
protected  Query QueryParser.getFieldQuery(String field, String queryText)
           
protected  Query MultiFieldQueryParser.getFieldQuery(String field, String queryText)
           
protected  Query QueryParser.getFieldQuery(String field, String queryText, int slop)
          Base implementation delegates to QueryParser.getFieldQuery(String,String).
protected  Query MultiFieldQueryParser.getFieldQuery(String field, String queryText, int slop)
           
protected  Query QueryParser.getFuzzyQuery(String field, String termStr, float minSimilarity)
          Factory method for generating a query (similar to QueryParser.getWildcardQuery(java.lang.String, java.lang.String)).
protected  Query MultiFieldQueryParser.getFuzzyQuery(String field, String termStr, float minSimilarity)
           
protected  Query QueryParser.getPrefixQuery(String field, String termStr)
          Factory method for generating a query (similar to QueryParser.getWildcardQuery(java.lang.String, java.lang.String)).
protected  Query MultiFieldQueryParser.getPrefixQuery(String field, String termStr)
           
protected  Query QueryParser.getRangeQuery(String field, String part1, String part2, boolean inclusive)
           
protected  Query MultiFieldQueryParser.getRangeQuery(String field, String part1, String part2, boolean inclusive)
           
protected  Query QueryParser.getWildcardQuery(String field, String termStr)
          Factory method for generating a query.
protected  Query MultiFieldQueryParser.getWildcardQuery(String field, String termStr)
           
 int QueryParser.Modifiers()
           
 Query QueryParser.parse(String query)
          Parses a query string, returning a Query.
static Query MultiFieldQueryParser.parse(Version matchVersion, String[] queries, String[] fields, Analyzer analyzer)
          Parses a query which searches on the fields specified.
static Query MultiFieldQueryParser.parse(Version matchVersion, String[] queries, String[] fields, BooleanClause.Occur[] flags, Analyzer analyzer)
          Parses a query, searching on the fields specified.
static Query MultiFieldQueryParser.parse(Version matchVersion, String query, String[] fields, BooleanClause.Occur[] flags, Analyzer analyzer)
          Parses a query, searching on the fields specified.
 Query QueryParser.Query(String field)
           
 Query QueryParser.Term(String field)
           
 Query QueryParser.TopLevelQuery(String field)
           
 



Copyright © 2000-2010 Apache Software Foundation. All Rights Reserved.