java.lang.Object
org.elasticsearch.index.query.AbstractQueryBuilder<MatchQueryBuilder>
org.elasticsearch.index.query.MatchQueryBuilder
- All Implemented Interfaces:
NamedWriteable
,VersionedNamedWriteable
,Writeable
,QueryBuilder
,Rewriteable<QueryBuilder>
,ToXContent
,ToXContentObject
Match query is a query that analyzes the text and constructs a query as the
result of the analysis.
-
Nested Class Summary
Nested classes/interfaces inherited from interface org.elasticsearch.xcontent.ToXContent
ToXContent.DelegatingMapParams, ToXContent.MapParams, ToXContent.Params
Nested classes/interfaces inherited from interface org.elasticsearch.common.io.stream.Writeable
Writeable.Reader<V>, Writeable.Writer<V>
-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final ParseField
static final ParseField
static final Operator
The default mode terms are combined in a match querystatic final ParseField
static final ParseField
static final ParseField
static final ParseField
static final ParseField
static final ParseField
static final String
The name for the match querystatic final ParseField
static final ParseField
static final ParseField
static final ParseField
Fields inherited from class org.elasticsearch.index.query.AbstractQueryBuilder
boost, BOOST_FIELD, DEFAULT_BOOST, NAME_FIELD, queryName
Fields inherited from interface org.elasticsearch.index.query.Rewriteable
MAX_REWRITE_ROUNDS
Fields inherited from interface org.elasticsearch.xcontent.ToXContent
EMPTY, EMPTY_PARAMS
-
Constructor Summary
ConstructorsConstructorDescriptionMatchQueryBuilder
(String fieldName, Object value) Constructs a new match query.Read from a stream. -
Method Summary
Modifier and TypeMethodDescriptionanalyzer()
Get the analyzer to use, if previously set, otherwisenull
Explicitly set the analyzer to use.boolean
Whether phrase queries should be automatically generated for multi terms synonyms.autoGenerateSynonymsPhraseQuery
(boolean enable) protected boolean
doEquals
(MatchQueryBuilder other) Indicates whether some otherQueryBuilder
object of the same type is "equal to" this one.protected int
protected QueryBuilder
Optional rewrite logic that only needs access to index level metadata and services (e.g.protected org.apache.lucene.search.Query
doToQuery
(SearchExecutionContext context) protected void
doWriteTo
(StreamOutput out) void
doXContent
(XContentBuilder builder, ToXContent.Params params) Returns the field name used in this query.static MatchQueryBuilder
fromXContent
(XContentParser parser) Gets the fuzziness used when evaluated to a fuzzy query type.Sets the fuzziness used when evaluated to a fuzzy query type.Get the fuzzy_rewrite parameterfuzzyRewrite
(String fuzzyRewrite) Sets the fuzzy_rewrite parameter controlling how the fuzzy query will get rewrittenboolean
Gets the fuzzy query transposition setting.fuzzyTranspositions
(boolean fuzzyTranspositions) Sets whether transpositions are supported in fuzzy queries.The minimal version of the recipient this object can be sent toReturns the name of the writeable objectboolean
lenient()
Gets leniency setting that controls if format based failures will be ignored.lenient
(boolean lenient) Sets whether format based failures will be ignored.int
Get the (optional) number of term expansions when using fuzzy or prefix type query.maxExpansions
(int maxExpansions) When using fuzzy or prefix type query, the number of term expansions to use.Gets the minimumShouldMatch valueminimumShouldMatch
(String minimumShouldMatch) Sets optional minimumShouldMatch value to apply to the queryoperator()
Returns the operator to use in a boolean query.Sets the operator to use when using a boolean query.int
Gets the length of a length of common (non-fuzzy) prefix for fuzzy match queriesprefixLength
(int prefixLength) Sets the length of a length of common (non-fuzzy) prefix for fuzzy match queriesvalue()
Returns the value used in this query.Returns the setting for handling zero terms queries.zeroTermsQuery
(ZeroTermsQueryOption zeroTermsQuery) Sets query to use in case no query terms are available, e.g.Methods inherited from class org.elasticsearch.index.query.AbstractQueryBuilder
addValidationError, boost, boost, boostAndQueryNameToXContent, checkNegativeBoost, declareStandardFields, doCoordinatorRewrite, doRewrite, doSearchRewrite, equals, extractInnerHitBuilders, getMaxNestedDepth, getName, hashCode, parseInnerQueryBuilder, parseTopLevelQuery, parseTopLevelQuery, printBoostAndQueryName, queryName, queryName, readQueries, requireValue, rewrite, setMaxNestedDepth, throwParsingExceptionOnMultipleFields, toQuery, toString, toXContent, writeQueries, writeTo
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
Methods inherited from interface org.elasticsearch.xcontent.ToXContentObject
isFragment
-
Field Details
-
CUTOFF_FREQUENCY_FIELD
-
ZERO_TERMS_QUERY_FIELD
-
LENIENT_FIELD
-
FUZZY_TRANSPOSITIONS_FIELD
-
FUZZY_REWRITE_FIELD
-
MINIMUM_SHOULD_MATCH_FIELD
-
OPERATOR_FIELD
-
MAX_EXPANSIONS_FIELD
-
PREFIX_LENGTH_FIELD
-
ANALYZER_FIELD
-
QUERY_FIELD
-
GENERATE_SYNONYMS_PHRASE_QUERY
-
NAME
The name for the match query- See Also:
-
DEFAULT_OPERATOR
The default mode terms are combined in a match query
-
-
Constructor Details
-
MatchQueryBuilder
Constructs a new match query. -
MatchQueryBuilder
Read from a stream.- Throws:
IOException
-
-
Method Details
-
doWriteTo
- Specified by:
doWriteTo
in classAbstractQueryBuilder<MatchQueryBuilder>
- Throws:
IOException
-
fieldName
Returns the field name used in this query. -
value
Returns the value used in this query. -
operator
Sets the operator to use when using a boolean query. Defaults toOR
. -
operator
Returns the operator to use in a boolean query. -
analyzer
Explicitly set the analyzer to use. Defaults to use explicit mapping config for the field, or, if not set, the default search analyzer. -
analyzer
Get the analyzer to use, if previously set, otherwisenull
-
fuzziness
Sets the fuzziness used when evaluated to a fuzzy query type. Defaults to "AUTO". -
fuzziness
Gets the fuzziness used when evaluated to a fuzzy query type. -
prefixLength
Sets the length of a length of common (non-fuzzy) prefix for fuzzy match queries- Parameters:
prefixLength
- non-negative length of prefix- Throws:
IllegalArgumentException
- in case the prefix is negative
-
prefixLength
public int prefixLength()Gets the length of a length of common (non-fuzzy) prefix for fuzzy match queries -
maxExpansions
When using fuzzy or prefix type query, the number of term expansions to use. -
maxExpansions
public int maxExpansions()Get the (optional) number of term expansions when using fuzzy or prefix type query. -
minimumShouldMatch
Sets optional minimumShouldMatch value to apply to the query -
minimumShouldMatch
Gets the minimumShouldMatch value -
fuzzyRewrite
Sets the fuzzy_rewrite parameter controlling how the fuzzy query will get rewritten -
fuzzyRewrite
Get the fuzzy_rewrite parameter- See Also:
-
fuzzyTranspositions
Sets whether transpositions are supported in fuzzy queries.The default metric used by fuzzy queries to determine a match is the Damerau-Levenshtein distance formula which supports transpositions. Setting transposition to false will switch to classic Levenshtein distance.
If not set, Damerau-Levenshtein distance metric will be used. -
fuzzyTranspositions
public boolean fuzzyTranspositions()Gets the fuzzy query transposition setting. -
lenient
Sets whether format based failures will be ignored. -
lenient
public boolean lenient()Gets leniency setting that controls if format based failures will be ignored. -
zeroTermsQuery
Sets query to use in case no query terms are available, e.g. after analysis removed them. Defaults toZeroTermsQueryOption.NONE
, but can be set toZeroTermsQueryOption.ALL
instead. -
zeroTermsQuery
Returns the setting for handling zero terms queries. -
autoGenerateSynonymsPhraseQuery
-
autoGenerateSynonymsPhraseQuery
public boolean autoGenerateSynonymsPhraseQuery()Whether phrase queries should be automatically generated for multi terms synonyms. Defaults totrue
. -
doXContent
- Specified by:
doXContent
in classAbstractQueryBuilder<MatchQueryBuilder>
- Throws:
IOException
-
doIndexMetadataRewrite
Description copied from class:AbstractQueryBuilder
Optional rewrite logic that only needs access to index level metadata and services (e.g. index settings and mappings) on the data node, but not the shard / Lucene index. The can_match phase can use this logic to early terminate a search without doing any search related i/o.- Overrides:
doIndexMetadataRewrite
in classAbstractQueryBuilder<MatchQueryBuilder>
- Parameters:
context
- anQueryRewriteContext
instance that has access the mappings and other index metadata- Returns:
- A
QueryBuilder
representing the rewritten query, that could be used to determine whether this query yields result. - Throws:
IOException
-
doToQuery
protected org.apache.lucene.search.Query doToQuery(SearchExecutionContext context) throws IOException - Specified by:
doToQuery
in classAbstractQueryBuilder<MatchQueryBuilder>
- Throws:
IOException
-
doEquals
Description copied from class:AbstractQueryBuilder
Indicates whether some otherQueryBuilder
object of the same type is "equal to" this one.- Specified by:
doEquals
in classAbstractQueryBuilder<MatchQueryBuilder>
-
doHashCode
protected int doHashCode()- Specified by:
doHashCode
in classAbstractQueryBuilder<MatchQueryBuilder>
-
getWriteableName
Description copied from interface:VersionedNamedWriteable
Returns the name of the writeable object -
fromXContent
- Throws:
IOException
-
getMinimalSupportedVersion
Description copied from interface:VersionedNamedWriteable
The minimal version of the recipient this object can be sent to
-