⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 tagdictionary.java

📁 自然语言处理领域的一个开发包
💻 JAVA
字号:
package opennlp.tools.postag;/** Interface to determine which tags are valid for a particular word based on a tag dictionary. * @author Tom Morton */public interface TagDictionary {    /**   * Returns a list of valid tags for the specified word.    * @param word The word.   * @return A list of valid tags for the specified word or null if no information is available for that word.   */  public String[] getTags(String word);  }

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -