org.elasticsearch.index.query
Class TermsQueryParser
java.lang.Object
org.elasticsearch.index.query.TermsQueryParser
- All Implemented Interfaces:
- QueryParser
public class TermsQueryParser
- extends java.lang.Object
- implements QueryParser
"terms" : {
"field_name" : [ "value1", "value2" ]
"minimum_match" : 1
}
Field Summary |
static java.lang.String |
NAME
|
Method Summary |
java.lang.String[] |
names()
The names this query parser is registered under. |
org.apache.lucene.search.Query |
parse(QueryParseContext parseContext)
Parses the into a query from the current parser location. |
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
NAME
public static final java.lang.String NAME
- See Also:
- Constant Field Values
TermsQueryParser
@Inject
public TermsQueryParser()
names
public java.lang.String[] names()
- Description copied from interface:
QueryParser
- The names this query parser is registered under.
- Specified by:
names
in interface QueryParser
parse
public org.apache.lucene.search.Query parse(QueryParseContext parseContext)
throws java.io.IOException,
QueryParsingException
- Description copied from interface:
QueryParser
- Parses the into a query from the current parser location. Will be at "START_OBJECT" location,
and should end when the token is at the matching "END_OBJECT".
- Specified by:
parse
in interface QueryParser
- Throws:
java.io.IOException
QueryParsingException