Class PerFieldAnalyzerWrapper
This analyzer is used to facilitate scenarios where different fields Require different analysis techniques. Use the Map argument in PerFieldAnalyzerWrapper(Analyzer, IDictionary<String, Analyzer>) to add non-default analyzers for fields.
Example usage:
IDictionary<string, Analyzer> analyzerPerField = new Dictionary<string, Analyzer>();
analyzerPerField["firstname"] = new KeywordAnalyzer();
analyzerPerField["lastname"] = new KeywordAnalyzer();
PerFieldAnalyzerWrapper aWrapper =
new PerFieldAnalyzerWrapper(new StandardAnalyzer(version), analyzerPerField);
In this example, Standard
A Per
Inheritance
Implements
Inherited Members
Namespace: Lucene.Net.Analysis.Miscellaneous
Assembly: Lucene.Net.Analysis.Common.dll
Syntax
public sealed class PerFieldAnalyzerWrapper : AnalyzerWrapper, IDisposable
Constructors
| Improve this Doc View SourcePerFieldAnalyzerWrapper(Analyzer)
Constructs with default analyzer.
Declaration
public PerFieldAnalyzerWrapper(Analyzer defaultAnalyzer)
Parameters
Type | Name | Description |
---|---|---|
Lucene. |
defaultAnalyzer | Any fields not specifically defined to use a different analyzer will use the one provided here. |
PerFieldAnalyzerWrapper(Analyzer, IDictionary<String, Analyzer>)
Constructs with default analyzer and a map of analyzers to use for specific fields.
The type of System.Collections.Generic.IDictionary<TKey, TValue> supplied will determine the type of behavior.
System. | General use. null keys are not supported. |
System. | Use when sorted keys are required. null keys are not supported. |
J2N. | Similar behavior as System.null keys are supported. |
J2N. | Use when sorted keys are required. null keys are supported. |
J2N. | Use when insertion order must be preserved (System.null keys are supported. |
Declaration
public PerFieldAnalyzerWrapper(Analyzer defaultAnalyzer, IDictionary<string, Analyzer> fieldAnalyzers)
Parameters
Type | Name | Description |
---|---|---|
Lucene. |
defaultAnalyzer | Any fields not specifically defined to use a different analyzer will use the one provided here. |
System. |
fieldAnalyzers | A System.Collections.Generic.IDictionary<TKey, TValue> (String field name to the Analyzer) to be used for those fields. |
Methods
| Improve this Doc View SourceGetWrappedAnalyzer(String)
Declaration
protected override Analyzer GetWrappedAnalyzer(string fieldName)
Parameters
Type | Name | Description |
---|---|---|
System. |
fieldName |
Returns
Type | Description |
---|---|
Lucene. |
Overrides
| Improve this Doc View SourceToString()
Declaration
public override string ToString()
Returns
Type | Description |
---|---|
System. |