Class Stopwords

java.lang.Object
  extended by Stopwords
All Implemented Interfaces:
java.io.Serializable
Direct Known Subclasses:
StopwordsEnglish, StopwordsGerman

public abstract class Stopwords
extends java.lang.Object
implements java.io.Serializable

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
Stopwords()
           
 
Method Summary
abstract  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

Stopwords

public Stopwords()
Method Detail

isStopword

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