Package org.elasticsearch.index.query
Enum Class MultiMatchQueryBuilder.Type
java.lang.Object
java.lang.Enum<MultiMatchQueryBuilder.Type>
org.elasticsearch.index.query.MultiMatchQueryBuilder.Type
- All Implemented Interfaces:
Serializable
,Comparable<MultiMatchQueryBuilder.Type>
,Constable
,Writeable
- Enclosing class:
- MultiMatchQueryBuilder
public static enum MultiMatchQueryBuilder.Type
extends Enum<MultiMatchQueryBuilder.Type>
implements Writeable
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
Nested classes/interfaces inherited from interface org.elasticsearch.common.io.stream.Writeable
Writeable.Reader<V>, Writeable.Writer<V>
-
Enum Constant Summary
Enum ConstantDescriptionUses the best matching boolean field as main score and uses a tie-breaker to adjust the score based on remaining field matchesUses the sum of the matching boolean fields to score the queryUses a blended DocumentFrequency to dynamically combine the queried fields into a single field given the configured analysis is identical.Uses the sum of the matching boolean fields to score the queryUses the best matching phrase field as main score and uses a tie-breaker to adjust the score based on remaining field matchesUses the best matching phrase-prefix field as main score and uses a tie-breaker to adjust the score based on remaining field matches -
Method Summary
Modifier and TypeMethodDescriptionstatic MultiMatchQueryBuilder.Type
org.elasticsearch.common.xcontent.ParseField
static MultiMatchQueryBuilder.Type
float
static MultiMatchQueryBuilder.Type
Returns the enum constant of this class with the specified name.static MultiMatchQueryBuilder.Type[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.void
writeTo(StreamOutput out)
Write this into the StreamOutput.
-
Enum Constant Details
-
BEST_FIELDS
Uses the best matching boolean field as main score and uses a tie-breaker to adjust the score based on remaining field matches -
MOST_FIELDS
Uses the sum of the matching boolean fields to score the query -
CROSS_FIELDS
Uses a blended DocumentFrequency to dynamically combine the queried fields into a single field given the configured analysis is identical. This type uses a tie-breaker to adjust the score based on remaining matches per analyzed terms -
PHRASE
Uses the best matching phrase field as main score and uses a tie-breaker to adjust the score based on remaining field matches -
PHRASE_PREFIX
Uses the best matching phrase-prefix field as main score and uses a tie-breaker to adjust the score based on remaining field matches -
BOOL_PREFIX
Uses the sum of the matching boolean fields to score the query
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum class has no constant with the specified nameNullPointerException
- if the argument is null
-
tieBreaker
public float tieBreaker() -
matchQueryType
-
parseField
public org.elasticsearch.common.xcontent.ParseField parseField() -
parse
public static MultiMatchQueryBuilder.Type parse(String value, org.elasticsearch.common.xcontent.DeprecationHandler deprecationHandler) -
readFromStream
- Throws:
IOException
-
writeTo
Description copied from interface:Writeable
Write this into the StreamOutput.- Specified by:
writeTo
in interfaceWriteable
- Throws:
IOException
-