DictionaryRepository
Leave feedback
On this page
Inheritance: java.lang.Object
public abstract class DictionaryRepository
Represents a repository of all dictionaries in the Index .
| Constructor | Description |
|---|---|
| DictionaryRepository() |
| 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. |
public DictionaryRepository()
public abstract AliasDictionary getAliasDictionary()
Gets a dictionary of aliases.
Returns: AliasDictionary - The dictionary of aliases.
public abstract StopWordDictionary getStopWordDictionary()
Gets a dictionary of stop words.
Returns: StopWordDictionary - The dictionary of stop words.
public abstract SynonymDictionary getSynonymDictionary()
Gets a dictionary of synonyms.
Returns: SynonymDictionary - The dictionary of synonyms.
public abstract PasswordDictionary getDocumentPasswords()
Gets a dictionary of document passwords.
Returns: PasswordDictionary - The dictionary of document passwords.
public abstract SpellingCorrector getSpellingCorrector()
Gets a spelling corrector.
Returns: SpellingCorrector - The spelling corrector.
public abstract HomophoneDictionary getHomophoneDictionary()
Gets a dictionary of homophones.
Returns: HomophoneDictionary - The dictionary of homophones.
public abstract Alphabet getAlphabet()
Gets a dictionary of characters.
Returns: Alphabet - The dictionary of characters.
public abstract CharacterReplacementDictionary getCharacterReplacements()
Gets a dictionary of character replacements.
Returns: CharacterReplacementDictionary - The dictionary of character replacements.
public abstract IWordFormsProvider getWordFormsProvider()
Gets a word forms provider.
Returns: IWordFormsProvider - The word forms provider.
public abstract void setWordFormsProvider(IWordFormsProvider value)
Sets a word forms provider.
Parameters:
| Parameter | Type | Description |
|---|---|---|
| value | IWordFormsProvider | A word forms provider. |
Was this page helpful?
Any additional feedback you'd like to share with us?
Please tell us how we can improve this page.
Thank you for your feedback!
We value your opinion. Your feedback will help us improve our documentation.