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,ToXContent,ToXContentObject,MultiTermQueryBuilder,QueryBuilder,Rewriteable<QueryBuilder>
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.common.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
Fields Modifier and Type Field Description static FuzzinessDEFAULT_FUZZINESSDefault maximum edit distance.static intDEFAULT_MAX_EXPANSIONSDefault maximum number of terms that the fuzzy query will expand to.static intDEFAULT_PREFIX_LENGTHDefault number of initial characters which will not be “fuzzified”.static booleanDEFAULT_TRANSPOSITIONSDefault as to whether transpositions should be treated as a primitive edit operation, instead of classic Levenshtein algorithm.static java.lang.StringNAME-
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.common.xcontent.ToXContent
EMPTY_PARAMS
-
-
Constructor Summary
Constructors Constructor Description FuzzyQueryBuilder(java.lang.String fieldName, boolean value)Constructs a new fuzzy query.FuzzyQueryBuilder(java.lang.String fieldName, double value)Constructs a new fuzzy query.FuzzyQueryBuilder(java.lang.String fieldName, float value)Constructs a new fuzzy query.FuzzyQueryBuilder(java.lang.String fieldName, int value)Constructs a new fuzzy query.FuzzyQueryBuilder(java.lang.String fieldName, long value)Constructs a new fuzzy query.FuzzyQueryBuilder(java.lang.String fieldName, java.lang.Object value)Constructs a new fuzzy query.FuzzyQueryBuilder(java.lang.String fieldName, java.lang.String value)Constructs a new fuzzy query.FuzzyQueryBuilder(StreamInput in)Read from a stream.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description protected booleandoEquals(FuzzyQueryBuilder other)Indicates whether some otherQueryBuilderobject of the same type is "equal to" this one.protected intdoHashCode()protected org.apache.lucene.search.QuerydoToQuery(QueryShardContext context)protected voiddoWriteTo(StreamOutput out)protected voiddoXContent(XContentBuilder builder, ToXContent.Params params)java.lang.StringfieldName()Get the field name for this query.static FuzzyQueryBuilderfromXContent(XContentParser parser)Fuzzinessfuzziness()FuzzyQueryBuilderfuzziness(Fuzziness fuzziness)java.lang.StringgetWriteableName()Returns the name of the writeable objectintmaxExpansions()FuzzyQueryBuildermaxExpansions(int maxExpansions)intprefixLength()FuzzyQueryBuilderprefixLength(int prefixLength)java.lang.Stringrewrite()FuzzyQueryBuilderrewrite(java.lang.String rewrite)booleantranspositions()FuzzyQueryBuildertranspositions(boolean transpositions)java.lang.Objectvalue()-
Methods inherited from class org.elasticsearch.index.query.AbstractQueryBuilder
addValidationError, boost, boost, declareStandardFields, doRewrite, equals, extractInnerHitBuilders, getName, hashCode, parseInnerQueryBuilder, printBoostAndQueryName, queryName, queryName, requireValue, rewrite, throwParsingExceptionOnMultipleFields, toFilter, 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, toFilter, toQuery
-
Methods inherited from interface org.elasticsearch.common.xcontent.ToXContent
toXContent
-
Methods inherited from interface org.elasticsearch.common.xcontent.ToXContentObject
isFragment
-
-
-
-
Field Detail
-
NAME
public static final java.lang.String NAME
- See Also:
- Constant Field Values
-
DEFAULT_FUZZINESS
public static final Fuzziness DEFAULT_FUZZINESS
Default maximum edit distance. Defaults to AUTO.
-
DEFAULT_PREFIX_LENGTH
public static final int DEFAULT_PREFIX_LENGTH
Default number of initial characters which will not be “fuzzified”. Defaults to 0.- See Also:
- Constant Field Values
-
DEFAULT_MAX_EXPANSIONS
public static final int DEFAULT_MAX_EXPANSIONS
Default maximum number of terms that the fuzzy query will expand to. Defaults to 50.- See Also:
- Constant Field Values
-
DEFAULT_TRANSPOSITIONS
public static final boolean DEFAULT_TRANSPOSITIONS
Default as to whether transpositions should be treated as a primitive edit operation, instead of classic Levenshtein algorithm. Defaults to false.- See Also:
- Constant Field Values
-
-
Constructor Detail
-
FuzzyQueryBuilder
public FuzzyQueryBuilder(java.lang.String fieldName, java.lang.String value)Constructs a new fuzzy query.- Parameters:
fieldName- The name of the fieldvalue- The value of the text
-
FuzzyQueryBuilder
public FuzzyQueryBuilder(java.lang.String fieldName, int value)Constructs a new fuzzy query.- Parameters:
fieldName- The name of the fieldvalue- The value of the text
-
FuzzyQueryBuilder
public FuzzyQueryBuilder(java.lang.String fieldName, long value)Constructs a new fuzzy query.- Parameters:
fieldName- The name of the fieldvalue- The value of the text
-
FuzzyQueryBuilder
public FuzzyQueryBuilder(java.lang.String fieldName, float value)Constructs a new fuzzy query.- Parameters:
fieldName- The name of the fieldvalue- The value of the text
-
FuzzyQueryBuilder
public FuzzyQueryBuilder(java.lang.String fieldName, double value)Constructs a new fuzzy query.- Parameters:
fieldName- The name of the fieldvalue- The value of the text
-
FuzzyQueryBuilder
public FuzzyQueryBuilder(java.lang.String fieldName, boolean value)Constructs a new fuzzy query.- Parameters:
fieldName- The name of the fieldvalue- The value of the text
-
FuzzyQueryBuilder
public FuzzyQueryBuilder(java.lang.String fieldName, java.lang.Object value)Constructs a new fuzzy query.- Parameters:
fieldName- The name of the fieldvalue- The value of the term
-
FuzzyQueryBuilder
public FuzzyQueryBuilder(StreamInput in) throws java.io.IOException
Read from a stream.- Throws:
java.io.IOException
-
-
Method Detail
-
doWriteTo
protected void doWriteTo(StreamOutput out) throws java.io.IOException
- Specified by:
doWriteToin classAbstractQueryBuilder<FuzzyQueryBuilder>- Throws:
java.io.IOException
-
fieldName
public java.lang.String fieldName()
Description copied from interface:MultiTermQueryBuilderGet the field name for this query.- Specified by:
fieldNamein interfaceMultiTermQueryBuilder
-
value
public java.lang.Object value()
-
fuzziness
public FuzzyQueryBuilder fuzziness(Fuzziness fuzziness)
-
fuzziness
public Fuzziness fuzziness()
-
prefixLength
public FuzzyQueryBuilder prefixLength(int prefixLength)
-
prefixLength
public int prefixLength()
-
maxExpansions
public FuzzyQueryBuilder maxExpansions(int maxExpansions)
-
maxExpansions
public int maxExpansions()
-
transpositions
public FuzzyQueryBuilder transpositions(boolean transpositions)
-
transpositions
public boolean transpositions()
-
rewrite
public FuzzyQueryBuilder rewrite(java.lang.String rewrite)
-
rewrite
public java.lang.String rewrite()
-
doXContent
protected void doXContent(XContentBuilder builder, ToXContent.Params params) throws java.io.IOException
- Specified by:
doXContentin classAbstractQueryBuilder<FuzzyQueryBuilder>- Throws:
java.io.IOException
-
fromXContent
public static FuzzyQueryBuilder fromXContent(XContentParser parser) throws java.io.IOException
- Throws:
java.io.IOException
-
getWriteableName
public java.lang.String getWriteableName()
Description copied from interface:NamedWriteableReturns the name of the writeable object- Specified by:
getWriteableNamein interfaceNamedWriteable
-
doToQuery
protected org.apache.lucene.search.Query doToQuery(QueryShardContext context) throws java.io.IOException
- Specified by:
doToQueryin classAbstractQueryBuilder<FuzzyQueryBuilder>- Throws:
java.io.IOException
-
doHashCode
protected int doHashCode()
- Specified by:
doHashCodein classAbstractQueryBuilder<FuzzyQueryBuilder>
-
doEquals
protected boolean doEquals(FuzzyQueryBuilder other)
Description copied from class:AbstractQueryBuilderIndicates whether some otherQueryBuilderobject of the same type is "equal to" this one.- Specified by:
doEqualsin classAbstractQueryBuilder<FuzzyQueryBuilder>
-
-