Save This Page
Home » lucene-2.3.2-src » org.apache » lucene » analysis » de » [javadoc | source]
org.apache.lucene.analysis.de
public final class: GermanStemFilter [javadoc | source]
java.lang.Object
   org.apache.lucene.analysis.TokenStream
      org.apache.lucene.analysis.TokenFilter
         org.apache.lucene.analysis.de.GermanStemFilter
A filter 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).
Fields inherited from org.apache.lucene.analysis.TokenFilter:
input
Constructor:
 public GermanStemFilter(TokenStream in) 
 public GermanStemFilter(TokenStream in,
    Set exclusionSet) 
    Builds a GermanStemFilter that uses an exclusiontable.
Method from org.apache.lucene.analysis.de.GermanStemFilter Summary:
next,   setExclusionSet,   setStemmer
Methods from org.apache.lucene.analysis.TokenFilter:
close
Methods from org.apache.lucene.analysis.TokenStream:
close,   next,   next,   reset
Methods from java.lang.Object:
equals,   getClass,   hashCode,   notify,   notifyAll,   toString,   wait,   wait,   wait
Method from org.apache.lucene.analysis.de.GermanStemFilter Detail:
 public final Token next() throws IOException 
 public  void setExclusionSet(Set exclusionSet) 
    Set an alternative exclusion list for this filter.
 public  void setStemmer(GermanStemmer stemmer) 
    Set a alternative/custom GermanStemmer for this filter.