Method | Description | |
---|---|---|
IncrementToken ( ) : bool |
Returns the next token in the stream, or null at EOS.
|
|
NGramTokenFilter ( LuceneVersion version, TokenStream input ) : Lucene.Net.Analysis.Miscellaneous |
Creates NGramTokenFilter with default min and max n-grams.
|
|
NGramTokenFilter ( LuceneVersion version, TokenStream input, int minGram, int maxGram ) : Lucene.Net.Analysis.Miscellaneous |
Creates NGramTokenFilter with given min and max n-grams.
|
|
Reset ( ) : void |
public NGramTokenFilter ( LuceneVersion version, TokenStream input ) : Lucene.Net.Analysis.Miscellaneous | ||
version | LuceneVersion | Lucene version to enable correct position increments. /// See above for details. |
input | TokenStream | |
return | Lucene.Net.Analysis.Miscellaneous |
public NGramTokenFilter ( LuceneVersion version, TokenStream input, int minGram, int maxGram ) : Lucene.Net.Analysis.Miscellaneous | ||
version | LuceneVersion | Lucene version to enable correct position increments. /// See above for details. |
input | TokenStream | |
minGram | int | the smallest n-gram to generate |
maxGram | int | the largest n-gram to generate |
return | Lucene.Net.Analysis.Miscellaneous |