C# Class Lucene.Net.Analysis.Hunspell.HunspellStem

Show file Open project: synhershko/lucene.net

Public Methods

Method Description
AddPrefix ( HunspellAffix prefix ) : void

Adds a prefix to the list of prefixes used to generate this stem. Because it is assumed that prefixes are added depth first, the prefix is added to the front of the list.

AddSuffix ( HunspellAffix suffix ) : void

Adds a suffix to the list of suffixes used to generate this stem. Because it is assumed that suffixes are added depth first, the suffix is added to the end of the list.

HunspellStem ( String stem ) : System

Creates a new Stem wrapping the given word stem.

Method Details

AddPrefix() public method

Adds a prefix to the list of prefixes used to generate this stem. Because it is assumed that prefixes are added depth first, the prefix is added to the front of the list.
public AddPrefix ( HunspellAffix prefix ) : void
prefix HunspellAffix Prefix to add to the list of prefixes for this stem.
return void

AddSuffix() public method

Adds a suffix to the list of suffixes used to generate this stem. Because it is assumed that suffixes are added depth first, the suffix is added to the end of the list.
public AddSuffix ( HunspellAffix suffix ) : void
suffix HunspellAffix Suffix to add to the list of suffixes for this stem.
return void

HunspellStem() public method

Creates a new Stem wrapping the given word stem.
public HunspellStem ( String stem ) : System
stem String
return System