Constructor StopAnalyzer
StopAnalyzer(Version)
Builds an analyzer which removes words in ENGLISH_STOP_WORDS.
Declaration
public StopAnalyzer(Version matchVersion)
Parameters
Type | Name | Description |
---|---|---|
Lucene. |
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. |
matchVersion | |
ISet<System. |
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. |
matchVersion | See above |
System. |
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. |
matchVersion | See above |
System. |
stopwords | Reader to load stop words from |