|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
public interface Stemmer
TO DO
Method Summary | |
---|---|
void |
add(char ch)
Add a character to the word being stemmed. |
void |
add(char[] ch)
Add a character to the word being stemmed. |
char[] |
getResultBuffer()
Returns a reference to a character buffer containing the results of the stemming process. |
int |
getResultLength()
Returns the length of the word resulting from the stemming process. |
void |
reset()
reset() resets the stemmer so it can stem another word. |
boolean |
stem()
Stem the word placed into the Stemmer buffer through calls to add(). |
boolean |
stem(char[] word)
Stem a word contained in a char[]. |
boolean |
stem(char[] word,
int wordLen)
Stem a word contained in a leading portion of a char[] array. |
boolean |
stem(char[] wordBuffer,
int offset,
int wordLen)
Stem a word contained in a portion of a char[] array. |
boolean |
stem(int i0)
|
java.lang.String |
stem(java.lang.String s)
Stem a word provided as a String. |
Method Detail |
---|
void reset()
void add(char ch)
void add(char[] ch)
int getResultLength()
char[] getResultBuffer()
java.lang.String stem(java.lang.String s)
boolean stem(char[] word)
boolean stem(char[] wordBuffer, int offset, int wordLen)
boolean stem(char[] word, int wordLen)
boolean stem()
boolean stem(int i0)
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |