Package org.elasticsearch.index.query
Class FuzzyQueryBuilder
java.lang.Object
org.elasticsearch.index.query.AbstractQueryBuilder<FuzzyQueryBuilder>
org.elasticsearch.index.query.FuzzyQueryBuilder
- All Implemented Interfaces:
NamedWriteable
,Writeable
,MultiTermQueryBuilder
,QueryBuilder
,Rewriteable<QueryBuilder>
,org.elasticsearch.xcontent.ToXContent
,org.elasticsearch.xcontent.ToXContentObject
public class FuzzyQueryBuilder
extends AbstractQueryBuilder<FuzzyQueryBuilder>
implements MultiTermQueryBuilder
A Query that does fuzzy matching for a specific value.
-
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.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 Fuzziness
Default maximum edit distance.static final int
Default maximum number of terms that the fuzzy query will expand to.static final int
Default number of initial characters which will not be “fuzzified”.static final boolean
Default as to whether transpositions should be treated as a primitive edit operation, instead of classic Levenshtein algorithm.static final String
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_PARAMS
-
Constructor Summary
ConstructorsConstructorDescriptionFuzzyQueryBuilder
(String fieldName, boolean value) Constructs a new fuzzy query.FuzzyQueryBuilder
(String fieldName, double value) Constructs a new fuzzy query.FuzzyQueryBuilder
(String fieldName, float value) Constructs a new fuzzy query.FuzzyQueryBuilder
(String fieldName, int value) Constructs a new fuzzy query.FuzzyQueryBuilder
(String fieldName, long value) Constructs a new fuzzy query.FuzzyQueryBuilder
(String fieldName, Object value) Constructs a new fuzzy query.FuzzyQueryBuilder
(String fieldName, String value) Constructs a new fuzzy query.Read from a stream. -
Method Summary
Modifier and TypeMethodDescriptionprotected boolean
doEquals
(FuzzyQueryBuilder other) Indicates whether some otherQueryBuilder
object of the same type is "equal to" this one.protected int
protected QueryBuilder
doRewrite
(QueryRewriteContext queryRewriteContext) protected org.apache.lucene.search.Query
doToQuery
(SearchExecutionContext context) protected void
doWriteTo
(StreamOutput out) protected void
doXContent
(org.elasticsearch.xcontent.XContentBuilder builder, org.elasticsearch.xcontent.ToXContent.Params params) Get the field name for this query.static FuzzyQueryBuilder
fromXContent
(org.elasticsearch.xcontent.XContentParser parser) Returns the name of the writeable objectint
maxExpansions
(int maxExpansions) int
prefixLength
(int prefixLength) rewrite()
boolean
transpositions
(boolean transpositions) value()
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, writeTo
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
Methods inherited from interface org.elasticsearch.index.query.QueryBuilder
boost, boost, getName, queryName, queryName, rewrite, toQuery
Methods inherited from interface org.elasticsearch.xcontent.ToXContent
toXContent
Methods inherited from interface org.elasticsearch.xcontent.ToXContentObject
isFragment
-
Field Details
-
NAME
- See Also:
-
DEFAULT_FUZZINESS
Default maximum edit distance. Defaults to AUTO. -
DEFAULT_PREFIX_LENGTH
public static final int DEFAULT_PREFIX_LENGTHDefault number of initial characters which will not be “fuzzified”. Defaults to 0.- See Also:
-
DEFAULT_MAX_EXPANSIONS
public static final int DEFAULT_MAX_EXPANSIONSDefault maximum number of terms that the fuzzy query will expand to. Defaults to 50.- See Also:
-
DEFAULT_TRANSPOSITIONS
public static final boolean DEFAULT_TRANSPOSITIONSDefault as to whether transpositions should be treated as a primitive edit operation, instead of classic Levenshtein algorithm. Defaults to true.- See Also:
-
-
Constructor Details
-
FuzzyQueryBuilder
Constructs a new fuzzy query.- Parameters:
fieldName
- The name of the fieldvalue
- The value of the text
-
FuzzyQueryBuilder
Constructs a new fuzzy query.- Parameters:
fieldName
- The name of the fieldvalue
- The value of the text
-
FuzzyQueryBuilder
Constructs a new fuzzy query.- Parameters:
fieldName
- The name of the fieldvalue
- The value of the text
-
FuzzyQueryBuilder
Constructs a new fuzzy query.- Parameters:
fieldName
- The name of the fieldvalue
- The value of the text
-
FuzzyQueryBuilder
Constructs a new fuzzy query.- Parameters:
fieldName
- The name of the fieldvalue
- The value of the text
-
FuzzyQueryBuilder
Constructs a new fuzzy query.- Parameters:
fieldName
- The name of the fieldvalue
- The value of the text
-
FuzzyQueryBuilder
Constructs a new fuzzy query.- Parameters:
fieldName
- The name of the fieldvalue
- The value of the term
-
FuzzyQueryBuilder
Read from a stream.- Throws:
IOException
-
-
Method Details
-
doWriteTo
- Specified by:
doWriteTo
in classAbstractQueryBuilder<FuzzyQueryBuilder>
- Throws:
IOException
-
fieldName
Description copied from interface:MultiTermQueryBuilder
Get the field name for this query.- Specified by:
fieldName
in interfaceMultiTermQueryBuilder
-
value
-
fuzziness
-
fuzziness
-
prefixLength
-
prefixLength
public int prefixLength() -
maxExpansions
-
maxExpansions
public int maxExpansions() -
transpositions
-
transpositions
public boolean transpositions() -
rewrite
-
rewrite
-
doXContent
protected void doXContent(org.elasticsearch.xcontent.XContentBuilder builder, org.elasticsearch.xcontent.ToXContent.Params params) throws IOException - Specified by:
doXContent
in classAbstractQueryBuilder<FuzzyQueryBuilder>
- Throws:
IOException
-
fromXContent
public static FuzzyQueryBuilder fromXContent(org.elasticsearch.xcontent.XContentParser parser) throws IOException - Throws:
IOException
-
getWriteableName
Description copied from interface:NamedWriteable
Returns the name of the writeable object- Specified by:
getWriteableName
in interfaceNamedWriteable
-
doRewrite
- Overrides:
doRewrite
in classAbstractQueryBuilder<FuzzyQueryBuilder>
- Throws:
IOException
-
doToQuery
protected org.apache.lucene.search.Query doToQuery(SearchExecutionContext context) throws IOException - Specified by:
doToQuery
in classAbstractQueryBuilder<FuzzyQueryBuilder>
- Throws:
IOException
-
doHashCode
protected int doHashCode()- Specified by:
doHashCode
in classAbstractQueryBuilder<FuzzyQueryBuilder>
-
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<FuzzyQueryBuilder>
-