Package org.elasticsearch.index.query
Class MatchQueryBuilder
java.lang.Object
org.elasticsearch.index.query.AbstractQueryBuilder<MatchQueryBuilder>
org.elasticsearch.index.query.MatchQueryBuilder
- All Implemented Interfaces:
NamedWriteable,VersionedNamedWriteable,Writeable,QueryBuilder,Rewriteable<QueryBuilder>,org.elasticsearch.xcontent.ToXContent,org.elasticsearch.xcontent.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
org.elasticsearch.xcontent.ToXContent.DelegatingMapParams, org.elasticsearch.xcontent.ToXContent.MapParams, org.elasticsearch.xcontent.ToXContent.ParamsNested classes/interfaces inherited from interface org.elasticsearch.common.io.stream.Writeable
Writeable.Reader<V>, Writeable.Writer<V> -
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final org.elasticsearch.xcontent.ParseFieldstatic final org.elasticsearch.xcontent.ParseFieldstatic final OperatorThe default mode terms are combined in a match querystatic final org.elasticsearch.xcontent.ParseFieldstatic final org.elasticsearch.xcontent.ParseFieldstatic final org.elasticsearch.xcontent.ParseFieldstatic final org.elasticsearch.xcontent.ParseFieldstatic final org.elasticsearch.xcontent.ParseFieldstatic final org.elasticsearch.xcontent.ParseFieldstatic final StringThe name for the match querystatic final org.elasticsearch.xcontent.ParseFieldstatic final org.elasticsearch.xcontent.ParseFieldstatic final org.elasticsearch.xcontent.ParseFieldstatic final org.elasticsearch.xcontent.ParseFieldFields inherited from class org.elasticsearch.index.query.AbstractQueryBuilder
boost, BOOST_FIELD, DEFAULT_BOOST, NAME_FIELD, queryNameFields inherited from interface org.elasticsearch.index.query.Rewriteable
MAX_REWRITE_ROUNDSFields inherited from interface org.elasticsearch.xcontent.ToXContent
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, otherwisenullExplicitly set the analyzer to use.booleanWhether phrase queries should be automatically generated for multi terms synonyms.autoGenerateSynonymsPhraseQuery(boolean enable) protected booleandoEquals(MatchQueryBuilder other) Indicates whether some otherQueryBuilderobject of the same type is "equal to" this one.protected intprotected QueryBuilderdoRewrite(QueryRewriteContext queryRewriteContext) protected org.apache.lucene.search.QuerydoToQuery(SearchExecutionContext context) protected voiddoWriteTo(StreamOutput out) voiddoXContent(org.elasticsearch.xcontent.XContentBuilder builder, org.elasticsearch.xcontent.ToXContent.Params params) Returns the field name used in this query.static MatchQueryBuilderfromXContent(org.elasticsearch.xcontent.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 rewrittenbooleanGets the fuzzy query transposition setting.fuzzyTranspositions(boolean fuzzyTranspositions) Sets whether transpositions are supported in fuzzy queries.Returns the name of the writeable objectbooleanlenient()Gets leniency setting that controls if format based failures will be ignored.lenient(boolean lenient) Sets whether format based failures will be ignored.intGet 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.intGets 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, checkNegativeBoost, declareStandardFields, equals, extractInnerHitBuilders, getName, hashCode, parseInnerQueryBuilder, parseInnerQueryBuilder, printBoostAndQueryName, queryName, queryName, requireValue, rewrite, throwParsingExceptionOnMultipleFields, toQuery, toString, toXContent, writeToMethods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, waitMethods inherited from interface org.elasticsearch.index.query.QueryBuilder
getMinimalSupportedVersionMethods inherited from interface org.elasticsearch.xcontent.ToXContentObject
isFragment
-
Field Details
-
CUTOFF_FREQUENCY_FIELD
public static final org.elasticsearch.xcontent.ParseField CUTOFF_FREQUENCY_FIELD -
ZERO_TERMS_QUERY_FIELD
public static final org.elasticsearch.xcontent.ParseField ZERO_TERMS_QUERY_FIELD -
LENIENT_FIELD
public static final org.elasticsearch.xcontent.ParseField LENIENT_FIELD -
FUZZY_TRANSPOSITIONS_FIELD
public static final org.elasticsearch.xcontent.ParseField FUZZY_TRANSPOSITIONS_FIELD -
FUZZY_REWRITE_FIELD
public static final org.elasticsearch.xcontent.ParseField FUZZY_REWRITE_FIELD -
MINIMUM_SHOULD_MATCH_FIELD
public static final org.elasticsearch.xcontent.ParseField MINIMUM_SHOULD_MATCH_FIELD -
OPERATOR_FIELD
public static final org.elasticsearch.xcontent.ParseField OPERATOR_FIELD -
MAX_EXPANSIONS_FIELD
public static final org.elasticsearch.xcontent.ParseField MAX_EXPANSIONS_FIELD -
PREFIX_LENGTH_FIELD
public static final org.elasticsearch.xcontent.ParseField PREFIX_LENGTH_FIELD -
ANALYZER_FIELD
public static final org.elasticsearch.xcontent.ParseField ANALYZER_FIELD -
QUERY_FIELD
public static final org.elasticsearch.xcontent.ParseField QUERY_FIELD -
GENERATE_SYNONYMS_PHRASE_QUERY
public static final org.elasticsearch.xcontent.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:
doWriteToin 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.ALLinstead. -
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.elasticsearch.xcontent.XContentBuilder builder, org.elasticsearch.xcontent.ToXContent.Params params) throws IOException - Specified by:
doXContentin classAbstractQueryBuilder<MatchQueryBuilder>- Throws:
IOException
-
doRewrite
- Overrides:
doRewritein classAbstractQueryBuilder<MatchQueryBuilder>- Throws:
IOException
-
doToQuery
protected org.apache.lucene.search.Query doToQuery(SearchExecutionContext context) throws IOException - Specified by:
doToQueryin classAbstractQueryBuilder<MatchQueryBuilder>- Throws:
IOException
-
doEquals
Description copied from class:AbstractQueryBuilderIndicates whether some otherQueryBuilderobject of the same type is "equal to" this one.- Specified by:
doEqualsin classAbstractQueryBuilder<MatchQueryBuilder>
-
doHashCode
protected int doHashCode()- Specified by:
doHashCodein classAbstractQueryBuilder<MatchQueryBuilder>
-
getWriteableName
Description copied from interface:VersionedNamedWriteableReturns the name of the writeable object -
fromXContent
public static MatchQueryBuilder fromXContent(org.elasticsearch.xcontent.XContentParser parser) throws IOException - Throws:
IOException
-