Uses of Interface
org.languagetool.tagging.WordTagger
-
Packages that use WordTagger Package Description org.languagetool.tagging -
-
Uses of WordTagger in org.languagetool.tagging
Classes in org.languagetool.tagging that implement WordTagger Modifier and Type Class Description class
CombiningTagger
Tags a word using two taggers, combining their results.class
ManualTagger
A tagger that reads the POS information from a plain (UTF-8) text file.class
MorfologikTagger
Tags a word using a Morfologik binary dictionary.Fields in org.languagetool.tagging declared as WordTagger Modifier and Type Field Description private WordTagger
CombiningTagger. removalTagger
private WordTagger
CombiningTagger. tagger1
private WordTagger
CombiningTagger. tagger2
protected WordTagger
BaseTagger. wordTagger
Methods in org.languagetool.tagging that return WordTagger Modifier and Type Method Description protected WordTagger
BaseTagger. getWordTagger()
private WordTagger
BaseTagger. initWordTagger()
Methods in org.languagetool.tagging with parameters of type WordTagger Modifier and Type Method Description protected @Nullable java.util.List<AnalyzedToken>
BaseTagger. additionalTags(java.lang.String word, WordTagger wordTagger)
Allows additional tagging in some language-dependent circumstancesConstructors in org.languagetool.tagging with parameters of type WordTagger Constructor Description CombiningTagger(WordTagger tagger1, WordTagger tagger2, boolean overwriteWithSecondTagger)
CombiningTagger(WordTagger tagger1, WordTagger tagger2, WordTagger removalTagger, boolean overwriteWithSecondTagger)
-