Package org.languagetool.tagging
Interface WordTagger
-
- All Known Implementing Classes:
CombiningTagger
,ManualTagger
,MorfologikTagger
public interface WordTagger
Find the potential part-of-speech tags (POS tags) for a word. Implementations just look up the word in a text or binary file, they will not consider the word's context.- Since:
- 2.8
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description List<TaggedWord>
tag(String word)
-
-
-
Method Detail
-
tag
List<TaggedWord> tag(String word)
- Parameters:
word
- the word to be tagged- Returns:
- the possible POS tags, or an empty list
-
-