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 Detail

      • tag

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