Свойство | Тип | Описание | |
---|---|---|---|
defaultMaxExpansions | int | ||
defaultMinSimilarity | float | ||
defaultPrefixLength | int |
Свойство | Тип | Описание | |
---|---|---|---|
term | Lucene.Net.Index.Term |
Метод | Описание | |
---|---|---|
Equals ( object obj ) : bool | ||
GetHashCode ( ) : int | ||
GetTermsEnum ( Lucene.Net.Index.Terms terms, Lucene.Net.Util.AttributeSource atts ) : Lucene.Net.Index.TermsEnum | ||
SlowFuzzyQuery ( Lucene.Net.Index.Term term ) : Lucene.Net.Index |
Calls
|
|
SlowFuzzyQuery ( Lucene.Net.Index.Term term, float minimumSimilarity ) : Lucene.Net.Index |
Calls
|
|
SlowFuzzyQuery ( Lucene.Net.Index.Term term, float minimumSimilarity, int prefixLength ) : Lucene.Net.Index |
Calls
|
|
SlowFuzzyQuery ( Lucene.Net.Index.Term term, float minimumSimilarity, int prefixLength, int maxExpansions ) : Lucene.Net.Index |
Create a new SlowFuzzyQuery 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.
|
|
ToString ( string field ) : string |
public GetTermsEnum ( Lucene.Net.Index.Terms terms, Lucene.Net.Util.AttributeSource atts ) : Lucene.Net.Index.TermsEnum | ||
terms | Lucene.Net.Index.Terms | |
atts | Lucene.Net.Util.AttributeSource | |
Результат | Lucene.Net.Index.TermsEnum |
public SlowFuzzyQuery ( Lucene.Net.Index.Term term ) : Lucene.Net.Index | ||
term | Lucene.Net.Index.Term | |
Результат | Lucene.Net.Index |
public SlowFuzzyQuery ( Lucene.Net.Index.Term term, float minimumSimilarity ) : Lucene.Net.Index | ||
term | Lucene.Net.Index.Term | |
minimumSimilarity | float | |
Результат | Lucene.Net.Index |
public SlowFuzzyQuery ( Lucene.Net.Index.Term term, float minimumSimilarity, int prefixLength ) : Lucene.Net.Index | ||
term | Lucene.Net.Index.Term | |
minimumSimilarity | float | |
prefixLength | int | |
Результат | Lucene.Net.Index |
public SlowFuzzyQuery ( Lucene.Net.Index.Term term, float minimumSimilarity, int prefixLength, int maxExpansions ) : Lucene.Net.Index | ||
term | Lucene.Net.Index.Term | the term to search for |
minimumSimilarity | float |
/// a value between 0 and 1 to set the required similarity
/// between the query term and the matching terms. For example, for a
/// |
prefixLength | int | length of common (non-fuzzy) prefix |
maxExpansions | int |
/// the maximum number of terms to match. If this number is
/// greater than |
Результат | Lucene.Net.Index |
public static int defaultMaxExpansions | ||
Результат | int |
public static float defaultMinSimilarity | ||
Результат | float |
public static int defaultPrefixLength | ||
Результат | int |