C# (CSharp) Lucene.Net.Analysis.Fr Namespace

Classes

Name Description
ElisionFilter
FrenchAnalyzer
FrenchAnalyzer.DefaultSetHolder
FrenchAnalyzer.SavedStreams
FrenchLightStemFilter A TokenFilter that applies FrenchLightStemmer to stem French words.

To prevent terms from being stemmed use an instance of SetKeywordMarkerFilter or a custom TokenFilter that sets the KeywordAttribute before this TokenStream.

FrenchLightStemmer Light Stemmer for French.

This stemmer implements the "UniNE" algorithm in: Light Stemming Approaches for the French, Portuguese, German and Hungarian Languages Jacques Savoy

FrenchMinimalStemFilter A TokenFilter that applies FrenchMinimalStemmer to stem French words.

To prevent terms from being stemmed use an instance of SetKeywordMarkerFilter or a custom TokenFilter that sets the KeywordAttribute before this TokenStream.

FrenchMinimalStemFilterFactory Factory for FrenchMinimalStemFilter.
 <fieldType name="text_frminstem" class="solr.TextField" positionIncrementGap="100"> <analyzer> <tokenizer class="solr.StandardTokenizerFactory"/> <filter class="solr.LowerCaseFilterFactory"/> <filter class="solr.ElisionFilterFactory"/> <filter class="solr.FrenchMinimalStemFilterFactory"/> </analyzer> </fieldType>
FrenchMinimalStemmer Light Stemmer for French.

This stemmer implements the following algorithm: A Stemming procedure and stopword list for general French corpora. Jacques Savoy.

FrenchStemFilter A filter that stemms french words. It supports a table of words that should not be stemmed at all. The used stemmer can be changed at runtime after the filter object is created (as long as it is a FrenchStemmer). Patrick Talbot (based on Gerhard Schwarz work for German) $Id: FrenchAnalyzer.java,v 1.2 2004/01/23 20:54:47 ehatcher Exp $
FrenchStemmer
TestFrenchAnalyzer Test case for FrenchAnalyzer.
TestFrenchMinimalStemFilter Simple tests for FrenchMinimalStemFilter
TestFrenchMinimalStemFilter.AnalyzerAnonymousInnerClassHelper
TestFrenchMinimalStemFilter.AnalyzerAnonymousInnerClassHelper2
TestFrenchMinimalStemFilter.AnalyzerAnonymousInnerClassHelper3
TestFrenchMinimalStemFilterFactory Simple tests to ensure the French minimal stem factory is working.