DotLucene 1.4 API Documentation

FuzzyQuery Constructor

Create a new FuzzyQuery that will match terms with a similarity of at least minimumSimilarity to term. If a prefixLength > 0 is specified, a common prefix of that length is also required.

Overload List

Calls {@link .FuzzyQuery(Term, float) FuzzyQuery(term, 0.5f, 0)}.

public FuzzyQuery(Term);

Calls {@link .FuzzyQuery(Term, float) FuzzyQuery(term, minimumSimilarity, 0)}.

public FuzzyQuery(Term,float);

Create a new FuzzyQuery that will match terms with a similarity of at least minimumSimilarity to term. If a prefixLength > 0 is specified, a common prefix of that length is also required.

public FuzzyQuery(Term,float,int);

See Also

FuzzyQuery Class | Lucene.Net.Search Namespace