📄 tagdictionary.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 + -