Class StopwordsEnglish

java.lang.Object
  extended by Stopwords
      extended by StopwordsEnglish
All Implemented Interfaces:
java.io.Serializable

public class StopwordsEnglish
extends Stopwords

Class that can test whether a given string is a stop word. Lowercases all words before the test.

Version:
1.0
Author:
Eibe Frank ([email protected])
See Also:
Serialized Form

Constructor Summary
StopwordsEnglish()
           
 
Method Summary
 boolean isStopword(java.lang.String str)
          Returns true if the given string is a stop word.
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

StopwordsEnglish

public StopwordsEnglish()
Method Detail

isStopword

public boolean isStopword(java.lang.String str)
Returns true if the given string is a stop word.

Specified by:
isStopword in class Stopwords