C# Class org.apache.lucene.analysis.synonym.SynonymMap

A map of synonyms, keys and values are phrases. @lucene.experimental
Datei anzeigen Open project: paulirwin/lucene.net Class Usage Examples

Public Properties

Property Type Description
fst FST
maxHorizontalContext int
words BytesRefHash

Public Methods

Method Description
SynonymMap ( FST fst, BytesRefHash words, int maxHorizontalContext ) : System

Method Details

SynonymMap() public method

public SynonymMap ( FST fst, BytesRefHash words, int maxHorizontalContext ) : System
fst FST
words BytesRefHash
maxHorizontalContext int
return System

Property Details

fst public_oe property

map<input word, list<ord>>
public FST fst
return FST

maxHorizontalContext public_oe property

maxHorizontalContext: maximum context we need on the tokenstream
public int maxHorizontalContext
return int

words public_oe property

map<ord, outputword>
public BytesRefHash words
return BytesRefHash