Uses of Class
org.languagetool.Experimental
-
-
Uses of Experimental in org.languagetool
Classes in org.languagetool with annotations of type Experimental Modifier and Type Class Description class
OutputStreamLogger
class
RuleLogger
class
RuleLoggerManager
class
RuleLoggerMessage
class
UserConfig
User-specific configuration.Methods in org.languagetool with annotations of type Experimental Modifier and Type Method Description AnalyzedTokenReadings[]
AnalyzedSentence. getPreDisambigTokens()
AnalyzedTokenReadings[]
AnalyzedSentence. getPreDisambigTokensWithoutWhitespace()
void
JLanguageTool. setMaxErrorsPerWordRate(float maxErrorsPerWordRate)
Maximum errors per word rate, checking will stop with an exception if the rate is higher.Constructors in org.languagetool with annotations of type Experimental Constructor Description JLanguageTool(Language language, List<Language> altLanguages, Language motherTongue, ResultCache cache, GlobalConfig globalConfig, UserConfig userConfig)
Create a JLanguageTool and setup the built-in rules for the given language and false friend rules for the text language / mother tongue pair.JLanguageTool(Language language, Language motherTongue, ResultCache cache, UserConfig userConfig)
Create a JLanguageTool and setup the built-in rules for the given language and false friend rules for the text language / mother tongue pair.JLanguageTool(Language language, ResultCache cache, UserConfig userConfig)
Create a JLanguageTool and setup the built-in rules for the given language and false friend rules for the text language / mother tongue pair. -
Uses of Experimental in org.languagetool.languagemodel
Methods in org.languagetool.languagemodel with annotations of type Experimental Modifier and Type Method Description static void
LuceneSingleIndexLanguageModel. clearCaches()
Only used internally.Constructors in org.languagetool.languagemodel with annotations of type Experimental Constructor Description LuceneSingleIndexLanguageModel(int maxNgram)
-
Uses of Experimental in org.languagetool.rules
Classes in org.languagetool.rules with annotations of type Experimental Modifier and Type Class Description class
OpenNMTRule
Queries an OpenNMT server started like this:th tools/rest_translation_server.lua -replace_unk -model ...
static class
RuleMatch.Type
UnlikeCategory
, this is specific to a RuleMatch, not to a rule.Methods in org.languagetool.rules with annotations of type Experimental Modifier and Type Method Description int
Rule. estimateContextForSureMatch()
A number that estimates how many words there must be after a match before we can be (relatively) sure the match is valid.RuleMatch.Type
RuleMatch. getType()
void
RuleMatch. setType(RuleMatch.Type type)
-
Uses of Experimental in org.languagetool.rules.ngrams
Classes in org.languagetool.rules.ngrams with annotations of type Experimental Modifier and Type Class Description class
NgramProbabilityRule
LanguageTool's probability check that uses ngram lookups to decide if an ngram of the input text is so rare in our ngram index that it should be considered an error.Methods in org.languagetool.rules.ngrams with annotations of type Experimental Modifier and Type Method Description void
NgramProbabilityRule. setMinProbability(double minProbability)
-
Uses of Experimental in org.languagetool.rules.patterns
Methods in org.languagetool.rules.patterns with annotations of type Experimental Modifier and Type Method Description int
PatternRule. estimateContextForSureMatch()
Constructors in org.languagetool.rules.patterns with annotations of type Experimental Constructor Description PatternRule(String id, Language language, List<PatternToken> patternTokens, String description, String message, String shortMessage, String suggestionsOutMsg, boolean isMember, boolean interpretPosTagsPreDisambiguation)
-
Uses of Experimental in org.languagetool.rules.spelling
Classes in org.languagetool.rules.spelling with annotations of type Experimental Modifier and Type Class Description class
SymSpellRule
spell checking using SymSpell algorithm, implementation from https://github.com/Lundez/JavaSymSpell in org.languagetool.rules.spelling.symspell.implementation potential faster alternative to Morfologik, especially in generating suggestionsFields in org.languagetool.rules.spelling with annotations of type Experimental Modifier and Type Field Description protected @Nullable LanguageModel
SpellingCheckRule. languageModel
Methods in org.languagetool.rules.spelling with annotations of type Experimental Modifier and Type Method Description abstract boolean
SpellingCheckRule. isMisspelled(String word)
protected List<String>
SpellingCheckRule. reorderSuggestions(List<String> suggestions, String word)
Constructors in org.languagetool.rules.spelling with annotations of type Experimental Constructor Description SpellingCheckRule(ResourceBundle messages, Language language, UserConfig userConfig, List<Language> altLanguages, @Nullable LanguageModel languageModel)
-
Uses of Experimental in org.languagetool.rules.spelling.hunspell
Methods in org.languagetool.rules.spelling.hunspell with annotations of type Experimental Modifier and Type Method Description boolean
HunspellRule. isMisspelled(String word)
-
Uses of Experimental in org.languagetool.rules.spelling.morfologik
Methods in org.languagetool.rules.spelling.morfologik with annotations of type Experimental Modifier and Type Method Description List<String>
MorfologikMultiSpeller. getSuggestionsFromDefaultDicts(String word)
List<String>
MorfologikMultiSpeller. getSuggestionsFromUserDicts(String word)
boolean
MorfologikSpellerRule. isMisspelled(String word)
Constructors in org.languagetool.rules.spelling.morfologik with annotations of type Experimental Constructor Description MorfologikMultiSpeller(String binaryDictPath, List<String> plainTextPaths, String languageVariantPlainTextPath, UserConfig userConfig, int maxEditDistance)
-