The SpellingCorrector class is designed to correct spelling errors in search queries, as well as to store words with correct spelling. You can learn about spelling correction in search queries on the Spell checking page.
To get the number of words in the spelling corrector dictionary, use the getCount method.
To get an array of words containing in the spelling corrector dictionary, the getWords method is used.
To add words to the spelling corrector dictionary, use the addRange method.
The clear method is used to remove all words from the spelling corrector dictionary.
The following example demonstrates the use of methods of the spelling corrector.
StringindexFolder="c:\\MyIndex\\";// Creating an index from in specified folder
Indexindex=newIndex(indexFolder);if(index.getDictionaries().getSpellingCorrector().getCount()>0){// Removing all words from the dictionary
index.getDictionaries().getSpellingCorrector().clear();}// Adding words to the dictionary
String[]words=newString[]{"achieve","accomplish","attain","reach"};index.getDictionaries().getSpellingCorrector().addRange(words);// Export words to a file
index.getDictionaries().getSpellingCorrector().exportDictionary("C:\\Words.txt");// Import words from a file
index.getDictionaries().getSpellingCorrector().importDictionary("C:\\Words.txt");
More resources
GitHub examples
You may easily run the code from documentation articles and see the features in action in our GitHub examples: