Class SremovalStemmer

java.lang.Object
  extended by Stemmer
      extended by SremovalStemmer
All Implemented Interfaces:
java.io.Serializable

public class SremovalStemmer
extends Stemmer

A basic stemmer that only performs the first step of the PorterStemmer algorithm: removing of the plural endings.

Author:
olena
See Also:
Serialized Form

Constructor Summary
SremovalStemmer()
           
 
Method Summary
 boolean isVowel(char c)
           
 java.lang.String stem(java.lang.String str)
          Iterated stemming of the given word.
 
Methods inherited from class Stemmer
stemString
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

SremovalStemmer

public SremovalStemmer()
Method Detail

stem

public java.lang.String stem(java.lang.String str)
Description copied from class: Stemmer
Iterated stemming of the given word.

Specified by:
stem in class Stemmer

isVowel

public boolean isVowel(char c)