Package org.carrot2.language
Class SnowballStemmerAdapter
- java.lang.Object
-
- org.carrot2.language.SnowballStemmerAdapter
-
-
Constructor Summary
Constructors Constructor Description SnowballStemmerAdapter(org.carrot2.language.snowball.SnowballProgram s)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description CharSequencestem(CharSequence word)Returns the base form of the provided word ornullif the base form cannot be determined.
-
-
-
Method Detail
-
stem
public CharSequence stem(CharSequence word)
Description copied from interface:StemmerReturns the base form of the provided word ornullif the base form cannot be determined. In the latter case, the base form will be assumed to be the same as the original word.
-
-