- Hunspell - Class in dk.dren.hunspell
-
The simple hunspell library frontend which takes care of creating
and singleton'ing the library instance (no need to load it more than once
per process) .
- Hunspell(String) - Constructor for class dk.dren.hunspell.Hunspell
-
Constructor for the library, loads the native lib.
- Hunspell.Dictionary - Class in dk.dren.hunspell
-
Class representing a single dictionary.
- Hunspell_add(Pointer, byte[]) - Method in class dk.dren.hunspell.Hunspell
-
- Hunspell_analyze(Pointer, PointerByReference, byte[]) - Method in class dk.dren.hunspell.Hunspell
-
- Hunspell_analyze(Pointer, PointerByReference, byte[]) - Method in interface dk.dren.hunspell.HunspellLibrary
-
Analyze word morphology
- Hunspell_create(String, String) - Method in class dk.dren.hunspell.Hunspell
-
- Hunspell_create(String, String) - Method in interface dk.dren.hunspell.HunspellLibrary
-
Create the hunspell instance
- Hunspell_destroy(Pointer) - Method in class dk.dren.hunspell.Hunspell
-
- Hunspell_destroy(Pointer) - Method in interface dk.dren.hunspell.HunspellLibrary
-
Destroy him my robots...
- Hunspell_free_list(Pointer, PointerByReference, int) - Method in class dk.dren.hunspell.Hunspell
-
- Hunspell_free_list(Pointer, PointerByReference, int) - Method in interface dk.dren.hunspell.HunspellLibrary
-
Free the memory used by the lists created as output from the other functions.
- Hunspell_get_dic_encoding(Pointer) - Method in class dk.dren.hunspell.Hunspell
-
- Hunspell_get_dic_encoding(Pointer) - Method in interface dk.dren.hunspell.HunspellLibrary
-
Get the dictionary encoding
- Hunspell_remove(Pointer, byte[]) - Method in class dk.dren.hunspell.Hunspell
-
- Hunspell_spell(Pointer, byte[]) - Method in class dk.dren.hunspell.Hunspell
-
- Hunspell_spell(Pointer, byte[]) - Method in interface dk.dren.hunspell.HunspellLibrary
-
spell(word) - spellcheck word
- Hunspell_stem(Pointer, PointerByReference, byte[]) - Method in class dk.dren.hunspell.Hunspell
-
- Hunspell_stem(Pointer, PointerByReference, byte[]) - Method in interface dk.dren.hunspell.HunspellLibrary
-
Find stem(s) for a word
- Hunspell_suggest(Pointer, PointerByReference, byte[]) - Method in class dk.dren.hunspell.Hunspell
-
- Hunspell_suggest(Pointer, PointerByReference, byte[]) - Method in interface dk.dren.hunspell.HunspellLibrary
-
Search suggestions
- HunspellLibrary - Interface in dk.dren.hunspell
-
Functions from $hunspell/src/hunspell/hunspell.h
The Hunspell java bindings are licensed under the same terms as Hunspell itself (GPL/LGPL/MPL tri-license),
see the file COPYING.txt in the root of the distribution for the exact terms.
- HunspellMain - Class in dk.dren.hunspell
-
Simple testing and native build utility class, not useful in applications.
- HunspellMain() - Constructor for class dk.dren.hunspell.HunspellMain
-