Lucene.Net  3.0.3
Lucene.Net is a .NET port of the Java Lucene Indexing Library
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Properties
Classes | Public Member Functions | Static Public Attributes | List of all members
Lucene.Net.Analysis.Miscellaneous.PatternAnalyzer Class Reference

Inherits Lucene.Net.Analysis.Analyzer.

Classes

class  FastStringReader
 

Public Member Functions

 PatternAnalyzer (Version matchVersion, Regex Regex, bool toLowerCase, ISet< string > stopWords)
 
TokenStream TokenStream (String fieldName, String text)
 
override TokenStream TokenStream (String fieldName, TextReader reader)
 
override bool Equals (Object other)
 
override int GetHashCode ()
 
- 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 Attributes

static readonly Regex NON_WORD_PATTERN = new Regex("\\W+", RegexOptions.Compiled)
 
static readonly Regex WHITESPACE_PATTERN = new Regex("\\s+", RegexOptions.Compiled)
 
static readonly PatternAnalyzer DEFAULT_ANALYZER
 
static readonly PatternAnalyzer EXTENDED_ANALYZER
 

Additional Inherited Members

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

Detailed Description

Definition at line 60 of file PatternAnalyzer.cs.

Constructor & Destructor Documentation

Lucene.Net.Analysis.Miscellaneous.PatternAnalyzer.PatternAnalyzer ( Version  matchVersion,
Regex  Regex,
bool  toLowerCase,
ISet< string >  stopWords 
)

Definition at line 156 of file PatternAnalyzer.cs.

Member Function Documentation

override bool Lucene.Net.Analysis.Miscellaneous.PatternAnalyzer.Equals ( Object  other)

Definition at line 243 of file PatternAnalyzer.cs.

override int Lucene.Net.Analysis.Miscellaneous.PatternAnalyzer.GetHashCode ( )

Definition at line 265 of file PatternAnalyzer.cs.

TokenStream Lucene.Net.Analysis.Miscellaneous.PatternAnalyzer.TokenStream ( String  fieldName,
String  text 
)

Definition at line 182 of file PatternAnalyzer.cs.

override TokenStream Lucene.Net.Analysis.Miscellaneous.PatternAnalyzer.TokenStream ( String  fieldName,
TextReader  reader 
)

Definition at line 218 of file PatternAnalyzer.cs.

Member Data Documentation

readonly PatternAnalyzer Lucene.Net.Analysis.Miscellaneous.PatternAnalyzer.DEFAULT_ANALYZER
static
Initial value:
Version.LUCENE_CURRENT, NON_WORD_PATTERN, true, StopAnalyzer.ENGLISH_STOP_WORDS_SET)

Definition at line 118 of file PatternAnalyzer.cs.

readonly PatternAnalyzer Lucene.Net.Analysis.Miscellaneous.PatternAnalyzer.EXTENDED_ANALYZER
static
Initial value:
Version.LUCENE_CURRENT, NON_WORD_PATTERN, true, EXTENDED_ENGLISH_STOP_WORDS)

Definition at line 128 of file PatternAnalyzer.cs.

readonly Regex Lucene.Net.Analysis.Miscellaneous.PatternAnalyzer.NON_WORD_PATTERN = new Regex("\\W+", RegexOptions.Compiled)
static

Definition at line 64 of file PatternAnalyzer.cs.

readonly Regex Lucene.Net.Analysis.Miscellaneous.PatternAnalyzer.WHITESPACE_PATTERN = new Regex("\\s+", RegexOptions.Compiled)
static

Definition at line 67 of file PatternAnalyzer.cs.


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