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