Class StopwordsGerman

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

public class StopwordsGerman
extends Stopwords

Class that can test whether a given string is a stop word. Lowercases all words before the test. This list of German stop words has been obtained from http://snowball.tartarus.org/german/stop.txt But I have deleted/changed some words that I haven't seen before.

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

Constructor Summary
StopwordsGerman()
           
 
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

StopwordsGerman

public StopwordsGerman()
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