Class StempelStemmer
Stemmer class is a convenient facade for other stemmer-related classes. The core stemming algorithm and its implementation is taken verbatim from the Egothor project ( www.egothor.org ).
Even though the stemmer tables supplied in the distribution package are built for Polish language, there is nothing language-specific here.
Inheritance
System.Object
StempelStemmer
Assembly: Lucene.Net.Analysis.Stempel.dll
Syntax
public class StempelStemmer : object
Constructors
Name | Description |
---|---|
StempelStemmer(Trie) | Create a Stemmer using pre-loaded stemmer table |
StempelStemmer(Stream) | Create a Stemmer using selected stemmer table |
Methods
Name | Description |
---|---|
Load(Stream) | Load a stemmer table from an inputstream. |
Stem(String) | Stem a word. |