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

📄 classdescveci.java

📁 用于multivariate时间序列分类
💻 JAVA
字号:
package tclass;   import java.io.*; /**  * A store of all the classes relevant for this domain. Includes methods  * for adding classes, converting between integer and String representations  * and finding the total number of classes.   *   * @author Waleed Kadous  * @version $Id: ClassDescVecI.java,v 1.1.1.1 2002/06/28 07:36:16 waleed Exp $  */public interface ClassDescVecI extends Cloneable, Serializable {    /** Add a new class label to this class.      *     */     public int add(String label);         /**     * Converts from a ClassLabel to an integer using this ClassDescVec.      *     * @param classlabel The String you want to convert to an int.      * @return The corresponding int. -1 if there is no such string in this     * mapping.     */    public int getId(String classlabel);         /**     * Get the string corresponding to a particular class.      *      */         public String getClassLabel(int classid);     /**     * Get the number of strings stored in this mapping.      */         public int size();       }

⌨️ 快捷键说明

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