C# Class Lucene.Net.Analysis.Synonym.SynonymMap.Parser

Abstraction for parsing synonym files. @lucene.experimental
Inheritance: Builder
Afficher le fichier Open project: apache/lucenenet

Méthodes publiques

Méthode Description
Analyze ( string text, CharsRef reuse ) : CharsRef

Sugar: analyzes the text with the analyzer and separates by SynonymMap#WORD_SEPARATOR. reuse and its chars must not be null.

Parse ( TextReader @in ) : void

Parse the given input, adding synonyms to the inherited Builder.

Parser ( bool dedup, Analyzer analyzer ) : Lucene.Net.Analysis.Tokenattributes

Method Details

Analyze() public méthode

Sugar: analyzes the text with the analyzer and separates by SynonymMap#WORD_SEPARATOR. reuse and its chars must not be null.
public Analyze ( string text, CharsRef reuse ) : CharsRef
text string
reuse CharsRef
Résultat CharsRef

Parse() public abstract méthode

Parse the given input, adding synonyms to the inherited Builder.
public abstract Parse ( TextReader @in ) : void
@in System.IO.TextReader
Résultat void

Parser() public méthode

public Parser ( bool dedup, Analyzer analyzer ) : Lucene.Net.Analysis.Tokenattributes
dedup bool
analyzer Analyzer
Résultat Lucene.Net.Analysis.Tokenattributes