Uses of Class
org.languagetool.rules.spelling.symspell.implementation.SymSpell.SegmentedSuggestion
Packages that use SymSpell.SegmentedSuggestion
-
Uses of SymSpell.SegmentedSuggestion in org.languagetool.rules.spelling.symspell.implementation
Methods in org.languagetool.rules.spelling.symspell.implementation that return SymSpell.SegmentedSuggestionModifier and TypeMethodDescriptionSymSpell.wordSegmentation(String input) Find suggested spellings for a multi-word input String (supports word splitting/merging). The String being spell checked.The word segmented String, the word segmented and spelling corrected String, the Edit distance sum between input String and corrected String, the Sum of word occurence probabilities in log scale (a measure of how common and probable the corrected segmentation is). SymSpell.wordSegmentation(String input, int maxEditDistance) Find suggested spellings for a multi-word input String (supports word splitting/merging). The String being spell checked. The maximum edit distance between input and corrected words (0=no correction/segmentation only).The word segmented String, the word segmented and spelling corrected String, the Edit distance sum between input String and corrected String, the Sum of word occurence probabilities in log scale (a measure of how common and probable the corrected segmentation is). SymSpell.wordSegmentation(String input, int maxEditDistance, int maxSegmentationWordLength) Find suggested spellings for a multi-word input String (supports word splitting/merging). The String being spell checked. The maximum word length that should be considered. The maximum edit distance between input and corrected words (0=no correction/segmentation only).The word segmented String, the word segmented and spelling corrected String, the Edit distance sum between input String and corrected String, the Sum of word occurence probabilities in log scale (a measure of how common and probable the corrected segmentation is).