A B C D E F G H L N O S T V 

A

addLibraryPath(String) - Static method in class org.puimula.libvoikko.Voikko
Set the explicit path to the folder containing shared library files.
Analysis - Class in org.puimula.libvoikko
A result from morphological analysis.
Analysis() - Constructor for class org.puimula.libvoikko.Analysis
 
analyze(String) - Method in class org.puimula.libvoikko.Voikko
Analyze the morphology of given word and return the list of analysis results.

B

ByteArray - Class in org.puimula.libvoikko
String mapping helper for internal use only.
ByteArray() - Constructor for class org.puimula.libvoikko.ByteArray
 

C

compareTo(Dictionary) - Method in class org.puimula.libvoikko.Dictionary
 

D

Dictionary - Class in org.puimula.libvoikko
Represents a morphological dictionary.
Dictionary(String, String, String, String) - Constructor for class org.puimula.libvoikko.Dictionary
 

E

equals(Object) - Method in class org.puimula.libvoikko.Dictionary
 

F

finalize() - Method in class org.puimula.libvoikko.Voikko
 

G

getDescription() - Method in class org.puimula.libvoikko.Dictionary
 
getErrorCode() - Method in class org.puimula.libvoikko.GrammarError
Error code describing the type of error.
getErrorLen() - Method in class org.puimula.libvoikko.GrammarError
 
getHyphenationPattern(String) - Method in class org.puimula.libvoikko.Voikko
Return a character pattern that describes the hyphenation of given word
getId() - Method in enum org.puimula.libvoikko.SuggestionStrategy
 
getId() - Method in enum org.puimula.libvoikko.TokenType
 
getLanguage() - Method in class org.puimula.libvoikko.Dictionary
 
getNextStartType() - Method in class org.puimula.libvoikko.Sentence
 
getScript() - Method in class org.puimula.libvoikko.Dictionary
 
getShortDescription() - Method in class org.puimula.libvoikko.GrammarError
 
getStartPos() - Method in class org.puimula.libvoikko.GrammarError
 
getSuggestions() - Method in class org.puimula.libvoikko.GrammarError
 
getText() - Method in class org.puimula.libvoikko.Sentence
 
getText() - Method in class org.puimula.libvoikko.Token
 
getType() - Method in class org.puimula.libvoikko.Token
 
getValue() - Method in class org.puimula.libvoikko.SizeTByReference
 
getVariant() - Method in class org.puimula.libvoikko.Dictionary
 
GrammarError - Class in org.puimula.libvoikko
A grammar error is associated with a segment of text in a paragraph.
GrammarError(int, int, int, List<String>, String) - Constructor for class org.puimula.libvoikko.GrammarError
 
grammarErrors(String, String) - Method in class org.puimula.libvoikko.Voikko
Check the given text for grammar errors and return a list of GrammarError objects representing the errors that were found.

H

hashCode() - Method in class org.puimula.libvoikko.Dictionary
 
hyphenate(String) - Method in class org.puimula.libvoikko.Voikko
 

L

listDicts() - Static method in class org.puimula.libvoikko.Voikko
 
listDicts(String) - Static method in class org.puimula.libvoikko.Voikko
 

N

n2s(byte[]) - Static method in class org.puimula.libvoikko.ByteArray
Native-to-Java string mapping

O

org.puimula.libvoikko - package org.puimula.libvoikko
Java interface to libvoikko, library of Finnish language tools.

S

s2bb(String) - Static method in class org.puimula.libvoikko.ByteArray
Java-to-native string mapping (using direct ByteBuffer)
s2n(String) - Static method in class org.puimula.libvoikko.ByteArray
Java-to-native string mapping
Sentence - Class in org.puimula.libvoikko
Represents a sentence in natural language text.
Sentence(String, SentenceStartType) - Constructor for class org.puimula.libvoikko.Sentence
 
sentences(String) - Method in class org.puimula.libvoikko.Voikko
Split the given natural language text into a list of Sentence objects.
SentenceStartType - Enum in org.puimula.libvoikko
Sentence start types
setAcceptAllUppercase(boolean) - Method in class org.puimula.libvoikko.Voikko
Accept words even when all of the letters are in uppercase.
setAcceptBulletedListsInGc(boolean) - Method in class org.puimula.libvoikko.Voikko
(Grammar checking only): Accept paragraphs if they would be valid within bulleted lists.
setAcceptExtraHyphens(boolean) - Method in class org.puimula.libvoikko.Voikko
(Spell checking only): Allow some extra hyphens in words.
setAcceptFirstUppercase(boolean) - Method in class org.puimula.libvoikko.Voikko
Accept words even when the first letter is in uppercase (start of sentence etc.)
setAcceptMissingHyphens(boolean) - Method in class org.puimula.libvoikko.Voikko
(Spell checking only): Accept missing hyphens at the start and end of the word.
setAcceptTitlesInGc(boolean) - Method in class org.puimula.libvoikko.Voikko
(Grammar checking only): Accept incomplete sentences that could occur in titles or headings.
setAcceptUnfinishedParagraphsInGc(boolean) - Method in class org.puimula.libvoikko.Voikko
(Grammar checking only): Accept incomplete sentences at the end of the paragraph.
setHyphenateUnknownWords(boolean) - Method in class org.puimula.libvoikko.Voikko
(Hyphenation only): Hyphenate unknown words.
setIgnoreDot(boolean) - Method in class org.puimula.libvoikko.Voikko
Ignore dot at the end of the word (needed for use in some word processors).
setIgnoreNonwords(boolean) - Method in class org.puimula.libvoikko.Voikko
(Spell checking only): Ignore non-words such as URLs and email addresses.
setIgnoreNumbers(boolean) - Method in class org.puimula.libvoikko.Voikko
Ignore words containing numbers.
setIgnoreUppercase(boolean) - Method in class org.puimula.libvoikko.Voikko
Accept words that are written completely in uppercase letters without checking them at all.
setMinHyphenatedWordLength(int) - Method in class org.puimula.libvoikko.Voikko
The minimum length for words that may be hyphenated.
setNoUglyHyphenation(boolean) - Method in class org.puimula.libvoikko.Voikko
Do not insert hyphenation positions that are considered to be ugly but correct Default: false
setSpellerCacheSize(int) - Method in class org.puimula.libvoikko.Voikko
Controls the size of in memory cache for spell checking results. 0 is the default size, 1 is twice as large as 0 etc. -1 disables the spell checking cache entirely.
setSuggestionStrategy(SuggestionStrategy) - Method in class org.puimula.libvoikko.Voikko
Set the suggestion strategy to be used when generating spelling suggestions.
setValue(SizeT) - Method in class org.puimula.libvoikko.SizeTByReference
 
SizeT - Class in org.puimula.libvoikko
 
SizeT(long) - Constructor for class org.puimula.libvoikko.SizeT
 
SizeT() - Constructor for class org.puimula.libvoikko.SizeT
 
SizeTByReference - Class in org.puimula.libvoikko
 
SizeTByReference(SizeT) - Constructor for class org.puimula.libvoikko.SizeTByReference
 
SizeTByReference() - Constructor for class org.puimula.libvoikko.SizeTByReference
 
spell(String) - Method in class org.puimula.libvoikko.Voikko
Check the spelling of given word.
suggest(String) - Method in class org.puimula.libvoikko.Voikko
 
SuggestionStrategy - Enum in org.puimula.libvoikko
Strategies for generating suggestions for incorrectly spelled words.

T

terminate() - Method in class org.puimula.libvoikko.Voikko
Releases the resources allocated by libvoikko for this instance.
Token - Class in org.puimula.libvoikko
Represents a token in tokenized natural language text.
Token(TokenType, String) - Constructor for class org.puimula.libvoikko.Token
 
tokens(String) - Method in class org.puimula.libvoikko.Voikko
Split the given natural language text into a list of Token objects.
TokenType - Enum in org.puimula.libvoikko
Token types
toString() - Method in class org.puimula.libvoikko.ByteArray
 
toString() - Method in class org.puimula.libvoikko.Dictionary
 
toString() - Method in class org.puimula.libvoikko.GrammarError
 

V

valueOf(String) - Static method in enum org.puimula.libvoikko.SentenceStartType
Returns the enum constant of this type with the specified name.
valueOf(String) - Static method in enum org.puimula.libvoikko.SuggestionStrategy
Returns the enum constant of this type with the specified name.
valueOf(String) - Static method in enum org.puimula.libvoikko.TokenType
Returns the enum constant of this type with the specified name.
values() - Static method in enum org.puimula.libvoikko.SentenceStartType
Returns an array containing the constants of this enum type, in the order they are declared.
values() - Static method in enum org.puimula.libvoikko.SuggestionStrategy
Returns an array containing the constants of this enum type, in the order they are declared.
values() - Static method in enum org.puimula.libvoikko.TokenType
Returns an array containing the constants of this enum type, in the order they are declared.
Voikko - Class in org.puimula.libvoikko
Represents an instance of Voikko.
Voikko(String) - Constructor for class org.puimula.libvoikko.Voikko
Creates a new Voikko instance using only the default dictionary search path
Voikko(String, String) - Constructor for class org.puimula.libvoikko.Voikko
Creates a new Voikko instance
VoikkoException - Exception in org.puimula.libvoikko
Exception thrown when a requested operation cannot be performed for some reason.
VoikkoException(String) - Constructor for exception org.puimula.libvoikko.VoikkoException
 
A B C D E F G H L N O S T V 

Copyright © 2016 Voikko developers. All rights reserved.