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

📄 irtermindexlist.java

📁 dragontoolkit用于机器学习
💻 JAVA
字号:
package dragon.ir.index;/** * <p>Interface of IRTerm Index List</p> * <p></p> * <p>Copyright: Copyright (c) 2005</p> * <p>Company: IST, Drexel University</p> * @author Davis Zhou * @version 1.0 */public interface IRTermIndexList {    /**     * Gets the IRTerm object specified by the index     * @param index the index of the term     * @return the IRTerm object specified by the index     */    public IRTerm get(int index);    /**     * Adds the term to the list     * @param curTerm the term for adding     * @return true if addes successfully     */    public boolean add(IRTerm curTerm);    /**     * Releases occupied resources     */    public void close();    /**     * Gets the number of terms in the list     * @return the number of terms in the list     */    public int size();}

⌨️ 快捷键说明

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