public class FunctionQParser extends QParser
| Modifier and Type | Field and Description |
|---|---|
QueryParsing.StrParser |
sp |
localParams, localParamsEnd, params, qstr, query, recurseCount, req, stringIncludingLocalParams, valFollowedParams| Constructor and Description |
|---|
FunctionQParser(String qstr,
SolrParams localParams,
SolrParams params,
SolrQueryRequest req) |
| Modifier and Type | Method and Description |
|---|---|
boolean |
argWasQuoted() |
protected boolean |
consumeArgumentDelimiter()
Consume an argument delimiter (a comma) from the token stream.
|
boolean |
getParseMultipleSources()
parse multiple comma separated value sources
|
boolean |
getParseToEnd()
throw exception if there is extra stuff at the end of the parsed valuesource(s).
|
boolean |
hasMoreArguments()
Are there more arguments in the argument list being parsed?
|
Query |
parse()
Create and return the
Query object represented by qstr. |
String |
parseArg() |
double |
parseDouble()
Parse a Double
|
Float |
parseFloat()
Parse a float.
|
String |
parseId()
TODO: Doc
|
int |
parseInt()
Parse an integer
|
Query |
parseNestedQuery()
TODO: Doc
|
ValueSource |
parseValueSource()
Parse an individual ValueSource.
|
protected ValueSource |
parseValueSource(boolean doConsumeDelimiter)
Parse an individual value source.
|
List<ValueSource> |
parseValueSourceList()
Parse a list of ValueSource.
|
void |
setParseMultipleSources(boolean parseMultipleSources) |
void |
setParseToEnd(boolean parseToEnd) |
addDebugInfo, getDefaultHighlightFields, getHighlightQuery, getLocalParams, getParam, getParams, getParser, getQuery, getReq, getSort, getString, setLocalParams, setParams, setReq, setString, subQuerypublic QueryParsing.StrParser sp
public FunctionQParser(String qstr, SolrParams localParams, SolrParams params, SolrQueryRequest req)
public void setParseMultipleSources(boolean parseMultipleSources)
public boolean getParseMultipleSources()
public void setParseToEnd(boolean parseToEnd)
public boolean getParseToEnd()
public Query parse() throws ParseException
QParserQuery object represented by qstr. Null MAY be returned to signify
there was no input (e.g. no query string) to parse.parse in class QParserParseExceptionQParser.getQuery()public boolean hasMoreArguments()
throws ParseException
ParseExceptionpublic String parseId() throws ParseException
ParseExceptionpublic Float parseFloat() throws ParseException
ParseExceptionpublic double parseDouble()
throws ParseException
ParseExceptionpublic int parseInt()
throws ParseException
ParseExceptionpublic boolean argWasQuoted()
public String parseArg() throws ParseException
ParseExceptionpublic List<ValueSource> parseValueSourceList() throws ParseException
ParseExceptionpublic ValueSource parseValueSource() throws ParseException
ParseExceptionpublic Query parseNestedQuery() throws ParseException
ParseExceptionprotected ValueSource parseValueSource(boolean doConsumeDelimiter) throws ParseException
doConsumeDelimiter - whether to consume a delimiter following the ValueSourceParseExceptionprotected boolean consumeArgumentDelimiter()
throws ParseException
ParseException