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

    Modifier and Type
    Method
    Description
    tag(String word)
     
  • Method Details

    • tag

      List<TaggedWord> tag(String word)
      Parameters:
      word - the word to be tagged
      Returns:
      the possible POS tags, or an empty list