Class PaiceStemmer

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

public class PaiceStemmer
extends Stemmer

Implements the Paice stemmer.

Version:
1.0
Author:
Olena Medelyan (olena@cs.waikato.ac.nz)
See Also:
Serialized Form

Constructor Summary
PaiceStemmer()
           
 
Method Summary
 java.lang.String stem(java.lang.String word)
          Method: stem * Returns: String * Recievs: String word * Purpose: strips suffix off word and returns * stem using paice stemming algorithm *
 
Methods inherited from class Stemmer
stemString
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

PaiceStemmer

public PaiceStemmer()
Method Detail

stem

public java.lang.String stem(java.lang.String word)
Method: stem * Returns: String * Recievs: String word * Purpose: strips suffix off word and returns * stem using paice stemming algorithm *

Specified by:
stem in class Stemmer