A G M O S T

A

add(char) - Method in class org.tartarus.martin.Stemmer
Add a character to the word being stemmed.
add(char[], int) - Method in class org.tartarus.martin.Stemmer
Adds wLen characters to the word being stemmed contained in a portion of a char[] array.

G

getResultBuffer() - Method in class org.tartarus.martin.Stemmer
Returns a reference to a character buffer containing the results of the stemming process.
getResultLength() - Method in class org.tartarus.martin.Stemmer
Returns the length of the word resulting from the stemming process.

M

main(String[]) - Static method in class org.tartarus.martin.Stemmer
Test program for demonstrating the Stemmer.

O

org.tartarus.martin - package org.tartarus.martin
 

S

stem() - Method in class org.tartarus.martin.Stemmer
Stem the word placed into the Stemmer buffer through calls to add().
Stemmer - Class in org.tartarus.martin
Stemmer, implementing the Porter Stemming Algorithm The Stemmer class transforms a word into its root form.
Stemmer() - Constructor for class org.tartarus.martin.Stemmer
 

T

toString() - Method in class org.tartarus.martin.Stemmer
After a word has been stemmed, it can be retrieved by toString(), or a reference to the internal buffer can be retrieved by getResultBuffer and getResultLength (which is generally more efficient.)

A G M O S T