An instance of the Alphabet class contains types of characters used for indexing. For detailed information on the types of characters, see the Character types page.
The getCharacterType method is used to get the type of a specific character.
To export types of all characters to a file, use the exportDictionary method.
To import types of all characters from a file, use the importDictionary method.
The following example demonstrates the use of methods of the alphabet.
StringindexFolder="c:\\MyIndex\\";// Creating or opening an index from the specified folder
Indexindex=newIndex(indexFolder);// Export the alphabet to a file
index.getDictionaries().getAlphabet().exportDictionary("C:\\Alphabet.dat");if(index.getDictionaries().getAlphabet().getCount()>0){// Setting a type of all characters to Separator
index.getDictionaries().getAlphabet().clear();}// Import the alphabet from a file
index.getDictionaries().getAlphabet().importDictionary("C:\\Alphabet.dat");if(index.getDictionaries().getAlphabet().getCharacterType('-')!=CharacterType.Blended){// Setting a type of hyphen character to Blended
index.getDictionaries().getAlphabet().setRange(newchar[]{'-'},CharacterType.Blended);}
More resources
GitHub examples
You may easily run the code from documentation articles and see the features in action in our GitHub examples: