Constructor StopAnalyzer
StopAnalyzer(Version)
Builds an analyzer which removes words in ENGLISH_STOP_WORDS.
Declaration
public StopAnalyzer(Version matchVersion)
Parameters
Type | Name | Description |
---|---|---|
Lucene.Net.Util.Version | matchVersion |
StopAnalyzer(Version, ISet<String>)
Builds an analyzer with the stop words from the given set.
Declaration
public StopAnalyzer(Version matchVersion, ISet<string> stopWords)
Parameters
Type | Name | Description |
---|---|---|
Lucene.Net.Util.Version | matchVersion | |
ISet<System.String> | stopWords |
StopAnalyzer(Version, IO.FileInfo)
Builds an analyzer with the stop words from the given file.
Declaration
public StopAnalyzer(Version matchVersion, IO.FileInfo stopwordsFile)
Parameters
Type | Name | Description |
---|---|---|
Lucene.Net.Util.Version | matchVersion | See above |
System.IO.FileInfo | stopwordsFile | File to load stop words from |
See Also
StopAnalyzer(Version, IO.TextReader)
Builds an analyzer with the stop words from the given reader.
Declaration
public StopAnalyzer(Version matchVersion, IO.TextReader stopwords)
Parameters
Type | Name | Description |
---|---|---|
Lucene.Net.Util.Version | matchVersion | See above |
System.IO.TextReader | stopwords | Reader to load stop words from |