DictionaryRepository

Inheritance: java.lang.Object

public abstract class DictionaryRepository

Represents a repository of all dictionaries in the Index .

Constructors

Constructor Description
DictionaryRepository()

Methods

Method Description
getAliasDictionary() Gets a dictionary of aliases.
getStopWordDictionary() Gets a dictionary of stop words.
getSynonymDictionary() Gets a dictionary of synonyms.
getDocumentPasswords() Gets a dictionary of document passwords.
getSpellingCorrector() Gets a spelling corrector.
getHomophoneDictionary() Gets a dictionary of homophones.
getAlphabet() Gets a dictionary of characters.
getCharacterReplacements() Gets a dictionary of character replacements.
getWordFormsProvider() Gets a word forms provider.
setWordFormsProvider(IWordFormsProvider value) Sets a word forms provider.

DictionaryRepository()

public DictionaryRepository()

getAliasDictionary()

public abstract AliasDictionary getAliasDictionary()

Gets a dictionary of aliases.

Returns: AliasDictionary - The dictionary of aliases.

getStopWordDictionary()

public abstract StopWordDictionary getStopWordDictionary()

Gets a dictionary of stop words.

Returns: StopWordDictionary - The dictionary of stop words.

getSynonymDictionary()

public abstract SynonymDictionary getSynonymDictionary()

Gets a dictionary of synonyms.

Returns: SynonymDictionary - The dictionary of synonyms.

getDocumentPasswords()

public abstract PasswordDictionary getDocumentPasswords()

Gets a dictionary of document passwords.

Returns: PasswordDictionary - The dictionary of document passwords.

getSpellingCorrector()

public abstract SpellingCorrector getSpellingCorrector()

Gets a spelling corrector.

Returns: SpellingCorrector - The spelling corrector.

getHomophoneDictionary()

public abstract HomophoneDictionary getHomophoneDictionary()

Gets a dictionary of homophones.

Returns: HomophoneDictionary - The dictionary of homophones.

getAlphabet()

public abstract Alphabet getAlphabet()

Gets a dictionary of characters.

Returns: Alphabet - The dictionary of characters.

getCharacterReplacements()

public abstract CharacterReplacementDictionary getCharacterReplacements()

Gets a dictionary of character replacements.

Returns: CharacterReplacementDictionary - The dictionary of character replacements.

getWordFormsProvider()

public abstract IWordFormsProvider getWordFormsProvider()

Gets a word forms provider.

Returns: IWordFormsProvider - The word forms provider.

setWordFormsProvider(IWordFormsProvider value)

public abstract void setWordFormsProvider(IWordFormsProvider value)

Sets a word forms provider.

Parameters:

Parameter Type Description
value IWordFormsProvider A word forms provider.