A C F G H I M R S T 

A

add(String) - Method in class com.atlascopco.hunspell.Hunspell
Add a word to the runtime dictionary.
addDic(String) - Method in class com.atlascopco.hunspell.Hunspell
Add an additional dictionary file (.dic file only, no affix file) to the runtime dictionary.
addWithAffix(String, String) - Method in class com.atlascopco.hunspell.Hunspell
Add the word to the runtime dictionary with the affix flags of the given example word so that affixed versions will be recognized as well.
analyze(String) - Method in class com.atlascopco.hunspell.Hunspell
Morphological analysis of the given word.

C

close() - Method in class com.atlascopco.hunspell.Hunspell
This method will handle the destruction of the Hunspell instance and ensure that the memory is reclaimed.
com.atlascopco.hunspell - package com.atlascopco.hunspell
 

F

finalize() - Method in class com.atlascopco.hunspell.Hunspell
 

G

generate(String, String) - Method in class com.atlascopco.hunspell.Hunspell
Generate a form for the first word based on the second word.
generate(String, List<String>) - Method in class com.atlascopco.hunspell.Hunspell
Generate a form for the given word based on the analysis of a second word.
getDictionaryEncoding() - Method in class com.atlascopco.hunspell.Hunspell
Get the dictionary encoding for this object.

H

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
Wrapper for library hunspell
This file was autogenerated by JNAerator,
a tool written by Olivier Chafik that uses a few opensource projects..
For help, please visit NativeLibs4Java or BridJ .
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.

I

isCorrect(String) - Method in class com.atlascopco.hunspell.Hunspell

M

MAXWORDUTF8LEN - Static variable in class com.atlascopco.hunspell.HunspellLibrary
 

R

remove(String) - Method in class com.atlascopco.hunspell.Hunspell
Remove a word from the runtime dictionary.

S

spell(String) - Method in class com.atlascopco.hunspell.Hunspell
Spellcheck the given word.
stem(String) - Method in class com.atlascopco.hunspell.Hunspell
Gets the stems of the word.
stem(List<String>) - Method in class com.atlascopco.hunspell.Hunspell
Gets the stems of a word from the results of analyze(String).
suggest(String) - Method in class com.atlascopco.hunspell.Hunspell
Suggest a list of corrections for the given word.

T

toEncodedCStringList(List<String>) - Method in class com.atlascopco.hunspell.Hunspell
Convert a list of strings to a list of cstrings in the dictionary encoding.
A C F G H I M R S T 

Copyright © 2012-2016 Atlas Copco Drilling Solutions. All Rights Reserved.