Lucene.Net  3.0.3
Lucene.Net is a port of the Lucene search engine library, written in C# and targeted at .NET runtime users.
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Properties Pages
Classes | Public Member Functions | Static Public Member Functions | Static Public Attributes | List of all members
Lucene.Net.Analysis.Fr.FrenchAnalyzer Class Reference

Inherits Lucene.Net.Analysis.Analyzer.

Public Member Functions

 FrenchAnalyzer (Version matchVersion)
 
 FrenchAnalyzer (Version matchVersion, ISet< string > stopwords)
 
 FrenchAnalyzer (Version matchVersion, ISet< string > stopwords, ISet< string > stemExclutionSet)
 
 FrenchAnalyzer (Version matchVersion, params string[] stopwords)
 
 FrenchAnalyzer (Version matchVersion, FileInfo stopwords)
 
void SetStemExclusionTable (params string[] exclusionlist)
 
void SetStemExclusionTable (IDictionary< string, string > exclusionlist)
 
void SetStemExclusionTable (FileInfo exclusionlist)
 
override sealed TokenStream TokenStream (String fieldName, TextReader reader)
 
override TokenStream ReusableTokenStream (String fieldName, TextReader reader)
 
- Public Member Functions inherited from Lucene.Net.Analysis.Analyzer
abstract TokenStream TokenStream (String fieldName, System.IO.TextReader reader)
 Creates a TokenStream which tokenizes all the text in the provided Reader. Must be able to handle null field name for backward compatibility.
 
virtual TokenStream ReusableTokenStream (String fieldName, System.IO.TextReader reader)
 Creates a TokenStream that is allowed to be re-used from the previous time that the same thread called this method. Callers that do not need to use more than one TokenStream at the same time from this analyzer should use this method for better performance.
 
virtual int GetPositionIncrementGap (String fieldName)
 Invoked before indexing a Fieldable instance if terms have already been added to that field. This allows custom analyzers to place an automatic position increment gap between Fieldable instances using the same field name. The default value position increment gap is 0. With a 0 position increment gap and the typical default token position increment of 1, all terms in a field, including across Fieldable instances, are in successive positions, allowing exact PhraseQuery matches, for instance, across Fieldable instance boundaries.
 
virtual int GetOffsetGap (IFieldable field)
 Just like GetPositionIncrementGap, except for Token offsets instead. By default this returns 1 for tokenized fields and, as if the fields were joined with an extra space character, and 0 for un-tokenized fields. This method is only called if the field produced at least one token for indexing.
 
void Close ()
 Frees persistent resources used by this Analyzer
 
virtual void Dispose ()
 

Static Public Member Functions

static ISet< string > GetDefaultStopSet ()
 

Static Public Attributes

static readonly String[] FRENCH_STOP_WORDS
 

Additional Inherited Members

- Protected Member Functions inherited from Lucene.Net.Analysis.Analyzer
virtual void Dispose (bool disposing)
 

Detailed Description

Definition at line 56 of file FrenchAnalyzer.cs.

Constructor & Destructor Documentation

Lucene.Net.Analysis.Fr.FrenchAnalyzer.FrenchAnalyzer ( Version  matchVersion)

Definition at line 118 of file FrenchAnalyzer.cs.

Lucene.Net.Analysis.Fr.FrenchAnalyzer.FrenchAnalyzer ( Version  matchVersion,
ISet< string >  stopwords 
)

Definition at line 132 of file FrenchAnalyzer.cs.

Lucene.Net.Analysis.Fr.FrenchAnalyzer.FrenchAnalyzer ( Version  matchVersion,
ISet< string >  stopwords,
ISet< string >  stemExclutionSet 
)

Definition at line 147 of file FrenchAnalyzer.cs.

Lucene.Net.Analysis.Fr.FrenchAnalyzer.FrenchAnalyzer ( Version  matchVersion,
params string[]  stopwords 
)

Definition at line 159 of file FrenchAnalyzer.cs.

Lucene.Net.Analysis.Fr.FrenchAnalyzer.FrenchAnalyzer ( Version  matchVersion,
FileInfo  stopwords 
)

Definition at line 170 of file FrenchAnalyzer.cs.

Member Function Documentation

static ISet<string> Lucene.Net.Analysis.Fr.FrenchAnalyzer.GetDefaultStopSet ( )
static

Definition at line 105 of file FrenchAnalyzer.cs.

override TokenStream Lucene.Net.Analysis.Fr.FrenchAnalyzer.ReusableTokenStream ( String  fieldName,
TextReader  reader 
)

Definition at line 240 of file FrenchAnalyzer.cs.

void Lucene.Net.Analysis.Fr.FrenchAnalyzer.SetStemExclusionTable ( params string[]  exclusionlist)

Definition at line 179 of file FrenchAnalyzer.cs.

void Lucene.Net.Analysis.Fr.FrenchAnalyzer.SetStemExclusionTable ( IDictionary< string, string >  exclusionlist)

Definition at line 189 of file FrenchAnalyzer.cs.

void Lucene.Net.Analysis.Fr.FrenchAnalyzer.SetStemExclusionTable ( FileInfo  exclusionlist)

Definition at line 200 of file FrenchAnalyzer.cs.

override sealed TokenStream Lucene.Net.Analysis.Fr.FrenchAnalyzer.TokenStream ( String  fieldName,
TextReader  reader 
)

Definition at line 214 of file FrenchAnalyzer.cs.

Member Data Documentation

readonly String [] Lucene.Net.Analysis.Fr.FrenchAnalyzer.FRENCH_STOP_WORDS
static

Definition at line 64 of file FrenchAnalyzer.cs.


The documentation for this class was generated from the following file: