Uses of Class
morfologik.fsa.MatchResult
-
Packages that use MatchResult Package Description morfologik.fsa morfologik.speller morfologik.stemming -
-
Uses of MatchResult in morfologik.fsa
Methods in morfologik.fsa that return MatchResult Modifier and Type Method Description MatchResult
FSATraversal. match(byte[] sequence)
MatchResult
FSATraversal. match(byte[] sequence, int node)
MatchResult
FSATraversal. match(byte[] sequence, int start, int length, int node)
Finds a matching path in the dictionary for a given sequence of labels fromsequence
and starting at nodenode
.MatchResult
FSATraversal. match(MatchResult reuse, byte[] sequence, int start, int length, int node)
Same asFSATraversal.match(byte[], int, int, int)
, but allows passing a reusableMatchResult
object so that no intermediate garbage is produced.Methods in morfologik.fsa with parameters of type MatchResult Modifier and Type Method Description MatchResult
FSATraversal. match(MatchResult reuse, byte[] sequence, int start, int length, int node)
Same asFSATraversal.match(byte[], int, int, int)
, but allows passing a reusableMatchResult
object so that no intermediate garbage is produced. -
Uses of MatchResult in morfologik.speller
Fields in morfologik.speller declared as MatchResult Modifier and Type Field Description private MatchResult
Speller. matchResult
Reusable match result. -
Uses of MatchResult in morfologik.stemming
Fields in morfologik.stemming declared as MatchResult Modifier and Type Field Description private MatchResult
DictionaryLookup. matchResult
Reusable match result.
-