mirror of https://github.com/apache/lucene.git
javadoc fixes
git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1413052 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
2d4e789d00
commit
eed8b5859e
|
@ -19,15 +19,9 @@ import org.apache.solr.search.QParser;
|
|||
|
||||
public class QueryParser extends SolrQueryParserBase implements QueryParserConstants {
|
||||
/** The default operator for parsing queries.
|
||||
* Use {@link QueryParserBase#setDefaultOperator} to change it.
|
||||
*/
|
||||
static public enum Operator { OR, AND }
|
||||
|
||||
/** Create a query parser.
|
||||
* @param matchVersion Lucene version to match. See <a href="#version">above</a>.
|
||||
* @param defaultField the default field for query terms.
|
||||
* @param a used to find terms in the query text.
|
||||
*/
|
||||
public QueryParser(Version matchVersion, String defaultField, QParser parser) {
|
||||
this(new FastCharStream(new StringReader("")));
|
||||
init(matchVersion, defaultField, parser);
|
||||
|
|
|
@ -43,15 +43,9 @@ import org.apache.solr.search.QParser;
|
|||
|
||||
public class QueryParser extends SolrQueryParserBase {
|
||||
/** The default operator for parsing queries.
|
||||
* Use {@link QueryParserBase#setDefaultOperator} to change it.
|
||||
*/
|
||||
static public enum Operator { OR, AND }
|
||||
|
||||
/** Create a query parser.
|
||||
* @param matchVersion Lucene version to match. See <a href="#version">above</a>.
|
||||
* @param defaultField the default field for query terms.
|
||||
* @param a used to find terms in the query text.
|
||||
*/
|
||||
|
||||
public QueryParser(Version matchVersion, String defaultField, QParser parser) {
|
||||
this(new FastCharStream(new StringReader("")));
|
||||
init(matchVersion, defaultField, parser);
|
||||
|
|
Loading…
Reference in New Issue