Lucene.Net.Analysis.Miscellaneous.StemmerOverrideFilter.StemmerOverrideMap.StemmerOverrideMap C# (CSharp) Method

StemmerOverrideMap() public method

Creates a new StemmerOverrideMap
public StemmerOverrideMap ( FST fst, bool ignoreCase ) : System.Collections.Generic
fst FST the fst to lookup the overrides
ignoreCase bool if the keys case should be ingored
return System.Collections.Generic
            public StemmerOverrideMap(FST<BytesRef> fst, bool ignoreCase)
            {
                this.fst = fst;
                this.ignoreCase = ignoreCase;
            }
StemmerOverrideFilter.StemmerOverrideMap