- Hunspell - Class in com.atlascopco.hunspell
-
This class implements an object-oriented interface to the C API for Hunspell.
- Hunspell(String, String) - Constructor for class com.atlascopco.hunspell.Hunspell
-
Instantiate a hunspell object with the given dictionary and affix file
- Hunspell(String, String, String) - Constructor for class com.atlascopco.hunspell.Hunspell
-
Instantiate a hunspell object with the given hunzipped dictionary and
affix files.
- Hunspell_add(Pointer<HunspellLibrary.Hunhandle>, Pointer<Byte>) - Static method in class com.atlascopco.hunspell.HunspellLibrary
-
add word to the run-time dictionary
- Hunspell_add_dic(Pointer<HunspellLibrary.Hunhandle>, Pointer<Byte>) - Static method in class com.atlascopco.hunspell.HunspellLibrary
-
Add dictionary (.dic file only)
- Hunspell_add_with_affix(Pointer<HunspellLibrary.Hunhandle>, Pointer<Byte>, Pointer<Byte>) - Static method in class com.atlascopco.hunspell.HunspellLibrary
-
add word to the run-time dictionary with affix flags of the example (a
dictionary word): Hunspell will recognize affixed forms of the new word,
too.
- Hunspell_analyze(Pointer<HunspellLibrary.Hunhandle>, Pointer<Pointer<Pointer<Byte>>>, Pointer<Byte>) - Static method in class com.atlascopco.hunspell.HunspellLibrary
-
morphological analysis of the word
- Hunspell_create(Pointer<Byte>, Pointer<Byte>) - Static method in class com.atlascopco.hunspell.HunspellLibrary
-
This will instantiate the Hunspell object and return a handle to it.
- Hunspell_create_key(Pointer<Byte>, Pointer<Byte>, Pointer<Byte>) - Static method in class com.atlascopco.hunspell.HunspellLibrary
-
This constructor must be used if the dictionary/affix files were compressed/encrypted
using the Hunspell hzip program.
- Hunspell_destroy(Pointer<HunspellLibrary.Hunhandle>) - Static method in class com.atlascopco.hunspell.HunspellLibrary
-
This calls the destructor on the Hunspell object.
- Hunspell_free_list(Pointer<HunspellLibrary.Hunhandle>, Pointer<Pointer<Pointer<Byte>>>, int) - Static method in class com.atlascopco.hunspell.HunspellLibrary
-
free suggestion lists
- Hunspell_generate(Pointer<HunspellLibrary.Hunhandle>, Pointer<Pointer<Pointer<Byte>>>, Pointer<Byte>, Pointer<Byte>) - Static method in class com.atlascopco.hunspell.HunspellLibrary
-
morphological generation by example(s)
- Hunspell_generate2(Pointer<HunspellLibrary.Hunhandle>, Pointer<Pointer<Pointer<Byte>>>, Pointer<Byte>, Pointer<Pointer<Byte>>, int) - Static method in class com.atlascopco.hunspell.HunspellLibrary
-
generation by morph.
- Hunspell_get_dic_encoding(Pointer<HunspellLibrary.Hunhandle>) - Static method in class com.atlascopco.hunspell.HunspellLibrary
-
This retrieves the encoding of the dictionary that the Hunspell instance
was instantiated with.
- Hunspell_remove(Pointer<HunspellLibrary.Hunhandle>, Pointer<Byte>) - Static method in class com.atlascopco.hunspell.HunspellLibrary
-
remove word from the run-time dictionary
- Hunspell_spell(Pointer<HunspellLibrary.Hunhandle>, Pointer<Byte>) - Static method in class com.atlascopco.hunspell.HunspellLibrary
-
spellcheck word
- Hunspell_stem(Pointer<HunspellLibrary.Hunhandle>, Pointer<Pointer<Pointer<Byte>>>, Pointer<Byte>) - Static method in class com.atlascopco.hunspell.HunspellLibrary
-
stemmer function
- Hunspell_stem2(Pointer<HunspellLibrary.Hunhandle>, Pointer<Pointer<Pointer<Byte>>>, Pointer<Pointer<Byte>>, int) - Static method in class com.atlascopco.hunspell.HunspellLibrary
-
get stems from a morph.
- Hunspell_suggest(Pointer<HunspellLibrary.Hunhandle>, Pointer<Pointer<Pointer<Byte>>>, Pointer<Byte>) - Static method in class com.atlascopco.hunspell.HunspellLibrary
-
search suggestions
- HunspellLibrary - Class in com.atlascopco.hunspell
-
- HunspellLibrary() - Constructor for class com.atlascopco.hunspell.HunspellLibrary
-
- HunspellLibrary.Hunhandle - Interface in com.atlascopco.hunspell
-
This interface is simply here to allow BridJ to maintain type-safety.