Class GermanStemFilter
A TokenFilter that stems German words.
It supports a table of words that should not be stemmed at all. The stemmer used can be changed at runtime after the filter object is created (as long as it is a GermanStemmer).
To prevent terms from being stemmed use an instance of SetKeywordMarkerFilter or a custom TokenFilter that sets the KeywordAttribute before this TokenStream.
Implements
IDisposable
  Inherited Members
Namespace: Lucene.Net.Analysis.De
Assembly: Lucene.Net.Analysis.Common.dll
Syntax
public sealed class GermanStemFilter : TokenFilter, IDisposable
  Constructors
| Improve this Doc View SourceGermanStemFilter(TokenStream)
Creates a GermanStemFilter instance
Declaration
public GermanStemFilter(TokenStream in)
  Parameters
| Type | Name | Description | 
|---|---|---|
| TokenStream | in | the source TokenStream  | 
      
Properties
| Improve this Doc View SourceStemmer
Set a alternative/custom GermanStemmer for this filter.
Declaration
public GermanStemmer Stemmer { get; set; }
  Property Value
| Type | Description | 
|---|---|
| GermanStemmer | 
Methods
| Improve this Doc View SourceIncrementToken()
Declaration
public override bool IncrementToken()
  Returns
| Type | Description | 
|---|---|
| System.Boolean | Returns true for next token in the stream, or false at EOS  | 
      
Overrides
Implements
      IDisposable