Class ElisionFilter
Removes elisions from a TokenStream. For example, "l'avion" (the plane) will be tokenized as "avion" (plane).
Implements
System.IDisposable
  Inherited Members
      System.Object.Equals(System.Object, System.Object)
    
    
      System.Object.GetType()
    
    
      System.Object.MemberwiseClone()
    
    
      System.Object.ReferenceEquals(System.Object, System.Object)
    
  Namespace: Lucene.Net.Analysis.Util
Assembly: Lucene.Net.Analysis.Common.dll
Syntax
public sealed class ElisionFilter : TokenFilter, IDisposable
  Constructors
| Improve this Doc View SourceElisionFilter(TokenStream, CharArraySet)
Constructs an elision filter with a CharArraySet of stop words
Declaration
public ElisionFilter(TokenStream input, CharArraySet articles)
  Parameters
| Type | Name | Description | 
|---|---|---|
| TokenStream | input | the source TokenStream  | 
      
| CharArraySet | articles | a set of stopword articles  | 
      
Methods
| Improve this Doc View SourceIncrementToken()
Increments the TokenStream with a CharTermAttribute without elisioned start
Declaration
public override sealed bool IncrementToken()
  Returns
| Type | Description | 
|---|---|
| System.Boolean | 
Overrides
Implements
      System.IDisposable