C# Class Lucene.Net.Analysis.Hunspell.HunspellDictionary.FlagParsingStrategy

Abstraction of the process of parsing flags taken from the affix and dic files
Exibir arquivo Open project: sisve/Lucene.Net.Analysis.Hunspell

Public Methods

Method Description
ParseFlag ( String rawFlag ) : Char

Parses the given String into a single flag.

ParseFlags ( String rawFlags ) : Char[]

Parses the given String into multiple flag.

Method Details

ParseFlag() public method

Parses the given String into a single flag.
public ParseFlag ( String rawFlag ) : Char
rawFlag String String to parse into a flag.
return Char

ParseFlags() public abstract method

Parses the given String into multiple flag.
public abstract ParseFlags ( String rawFlags ) : Char[]
rawFlags String String to parse into a flags.
return Char[]