Namespace: WordsMatching

Class StopWordsHandler

System.Object
  |
  +-- WordsMatching.StopWordsHandler

public class StopWordsHandler
extends System.Object

Static
False
Persistent
False
summary
Stop words are frequently occurring, insignificant words words that appear in a database record, article or web page. Common stop words include
Sealed
False
Abstract
False

Field Summary
  public  string stopWordsList
 
 

Constructor Summary
StopWordsHandler()
 
 

Method Summary
  public bool IsStopWord(string word)
 
 

Field Detail

stopWordsList

public static string stopWordsList = new string[] {
			"after","also","an","a","and","as","at","be","because","before",
			"between","but","before","for","however","from","if","in","into",
			"of","or","other","out","since","such","than","that","the","these",
            "there","this","those","to","under","upon","when","where","whether",
			"which","with","within","without" 

			}
Readonly
False
Initial
new string[] { "after","also","an","a","and","as","at","be","because","before", "between","but","before","for","however","from","if","in","into", "of","or","other","out","since","such","than","that","the","these", "there","this","those","to","under","upon","when","where","whether", "which","with","within","without" }
Volatile
False
Type
string[]
Nullable
False
Const
False
New
False
Static
True

Constructor Detail

StopWordsHandler

public void StopWordsHandler()
Static
False
Extern
False

Method Detail

IsStopWord

public bool IsStopWord(string word)
Returns
bool
Nullable
False
Virtual
False
New
False
Sealed
False
Extern
False
Override
False
Abstract
False
Static
True