Class PatternKeywordMarkerFilter
Marks terms as keywords via the KeywordAttribute. Each token
that matches the provided pattern is marked as a keyword by setting
IsKeyword to true
.
Inheritance
System.Object
PatternKeywordMarkerFilter
Implements
IDisposable
Inherited Members
Namespace: Lucene.Net.Analysis.Miscellaneous
Assembly: Lucene.Net.Analysis.Common.dll
Syntax
public sealed class PatternKeywordMarkerFilter : KeywordMarkerFilter, IDisposable
Constructors
| Improve this Doc View SourcePatternKeywordMarkerFilter(TokenStream, Regex)
Create a new PatternKeywordMarkerFilter, that marks the current
token as a keyword if the tokens term buffer matches the provided
Declaration
public PatternKeywordMarkerFilter(TokenStream in, Regex pattern)
Parameters
Type | Name | Description |
---|---|---|
TokenStream | in | TokenStream to filter |
Regex | pattern | the pattern to apply to the incoming term buffer |
Methods
| Improve this Doc View SourceIsKeyword()
Declaration
protected override bool IsKeyword()
Returns
Type | Description |
---|---|
System.Boolean |
Overrides
Implements
IDisposable