Package org.opensearch.index.query
Class MatchQueryBuilder
java.lang.Object
org.opensearch.index.query.AbstractQueryBuilder<MatchQueryBuilder>
org.opensearch.index.query.MatchQueryBuilder
- All Implemented Interfaces:
org.opensearch.core.common.io.stream.NamedWriteable
,org.opensearch.core.common.io.stream.Writeable
,org.opensearch.core.xcontent.ToXContent
,org.opensearch.core.xcontent.ToXContentObject
,QueryBuilder
,Rewriteable<QueryBuilder>
,WithFieldName
public class MatchQueryBuilder
extends AbstractQueryBuilder<MatchQueryBuilder>
implements WithFieldName
Match query is a query that analyzes the text and constructs a query as the
result of the analysis.
- Opensearch.internal:
-
Nested Class Summary
Nested classes/interfaces inherited from interface org.opensearch.core.xcontent.ToXContent
org.opensearch.core.xcontent.ToXContent.DelegatingMapParams, org.opensearch.core.xcontent.ToXContent.MapParams, org.opensearch.core.xcontent.ToXContent.Params
Nested classes/interfaces inherited from interface org.opensearch.core.common.io.stream.Writeable
org.opensearch.core.common.io.stream.Writeable.Reader<V>, org.opensearch.core.common.io.stream.Writeable.WriteableRegistry, org.opensearch.core.common.io.stream.Writeable.Writer<V>
-
Field Summary
Modifier and TypeFieldDescriptionstatic final org.opensearch.core.ParseField
static final org.opensearch.core.ParseField
Deprecated.Since max_optimization optimization landed in 7.0, normal MatchQuery will achieve the same result without any configuration.static final Operator
The default mode terms are combined in a match querystatic final org.opensearch.core.ParseField
static final org.opensearch.core.ParseField
static final org.opensearch.core.ParseField
static final org.opensearch.core.ParseField
static final org.opensearch.core.ParseField
static final org.opensearch.core.ParseField
static final String
The name for the match querystatic final org.opensearch.core.ParseField
static final org.opensearch.core.ParseField
static final org.opensearch.core.ParseField
static final org.opensearch.core.ParseField
Fields inherited from class org.opensearch.index.query.AbstractQueryBuilder
boost, BOOST_FIELD, DEFAULT_BOOST, NAME_FIELD, queryName
Fields inherited from interface org.opensearch.index.query.Rewriteable
MAX_REWRITE_ROUNDS
Fields inherited from interface org.opensearch.core.xcontent.ToXContent
EMPTY_PARAMS
-
Constructor Summary
ConstructorDescriptionMatchQueryBuilder
(String fieldName, Object value) Constructs a new match query.MatchQueryBuilder
(org.opensearch.core.common.io.stream.StreamInput in) 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) Gets the optional cutoff value, can benull
if not set previouslycutoffFrequency
(float cutoff) Deprecated.seeCUTOFF_FREQUENCY_FIELD
for more detailsprotected boolean
doEquals
(MatchQueryBuilder other) Indicates whether some otherQueryBuilder
object of the same type is "equal to" this one.protected int
protected org.apache.lucene.search.Query
doToQuery
(QueryShardContext context) protected void
doWriteTo
(org.opensearch.core.common.io.stream.StreamOutput out) void
doXContent
(org.opensearch.core.xcontent.XContentBuilder builder, org.opensearch.core.xcontent.ToXContent.Params params) Returns the field name used in this query.static MatchQueryBuilder
fromXContent
(org.opensearch.core.xcontent.XContentParser parser) Gets the fuzziness used when evaluated to a fuzzy query type.Deprecated.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.boolean
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
(MatchQuery.ZeroTermsQuery zeroTermsQuery) Sets query to use in case no query terms are available, e.g.Methods inherited from class org.opensearch.index.query.AbstractQueryBuilder
addValidationError, boost, boost, checkNegativeBoost, declareStandardFields, doRewrite, equals, extractInnerHitBuilders, getName, hashCode, parseInnerQueryBuilder, printBoostAndQueryName, queryName, queryName, requireValue, rewrite, throwParsingExceptionOnMultipleFields, toQuery, toString, toXContent, writeTo
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
Methods inherited from interface org.opensearch.index.query.QueryBuilder
visit
Methods inherited from interface org.opensearch.core.xcontent.ToXContentObject
isFragment
-
Field Details
-
ZERO_TERMS_QUERY_FIELD
public static final org.opensearch.core.ParseField ZERO_TERMS_QUERY_FIELD -
CUTOFF_FREQUENCY_FIELD
Deprecated.Since max_optimization optimization landed in 7.0, normal MatchQuery will achieve the same result without any configuration. -
LENIENT_FIELD
public static final org.opensearch.core.ParseField LENIENT_FIELD -
FUZZY_TRANSPOSITIONS_FIELD
public static final org.opensearch.core.ParseField FUZZY_TRANSPOSITIONS_FIELD -
FUZZY_REWRITE_FIELD
public static final org.opensearch.core.ParseField FUZZY_REWRITE_FIELD -
MINIMUM_SHOULD_MATCH_FIELD
public static final org.opensearch.core.ParseField MINIMUM_SHOULD_MATCH_FIELD -
OPERATOR_FIELD
public static final org.opensearch.core.ParseField OPERATOR_FIELD -
MAX_EXPANSIONS_FIELD
public static final org.opensearch.core.ParseField MAX_EXPANSIONS_FIELD -
PREFIX_LENGTH_FIELD
public static final org.opensearch.core.ParseField PREFIX_LENGTH_FIELD -
ANALYZER_FIELD
public static final org.opensearch.core.ParseField ANALYZER_FIELD -
QUERY_FIELD
public static final org.opensearch.core.ParseField QUERY_FIELD -
GENERATE_SYNONYMS_PHRASE_QUERY
public static final org.opensearch.core.ParseField 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.- Specified by:
fieldName
in interfaceWithFieldName
-
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
Deprecated. -
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. -
cutoffFrequency
Deprecated.seeCUTOFF_FREQUENCY_FIELD
for more detailsSet a cutoff value in [0..1] (or absolute number >=1) representing the maximum threshold of a terms document frequency to be considered a low frequency term. -
cutoffFrequency
Gets the optional cutoff value, can benull
if not set previously -
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 toMatchQuery.ZeroTermsQuery.NONE
, but can be set toMatchQuery.ZeroTermsQuery.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
public void doXContent(org.opensearch.core.xcontent.XContentBuilder builder, org.opensearch.core.xcontent.ToXContent.Params params) throws IOException - Specified by:
doXContent
in classAbstractQueryBuilder<MatchQueryBuilder>
- Throws:
IOException
-
doToQuery
- 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
- Specified by:
getWriteableName
in interfaceorg.opensearch.core.common.io.stream.NamedWriteable
-
fromXContent
public static MatchQueryBuilder fromXContent(org.opensearch.core.xcontent.XContentParser parser) throws IOException - Throws:
IOException
-