Class ElisionFilter
Removes elisions from a TokenStream. For example, "l'avion" (the plane) will be tokenized as "avion" (plane).
Implements
IDisposable
Inherited Members
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
IDisposable