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

📄 attdescveci.java

📁 用于multivariate时间序列分类
💻 JAVA
字号:
package tclass;   /**  * A vector of attribute descriptions. Has an additional feature over  * other vector classes that it can search for a particular attribute   * description by name.<p>  * Such a vector might be produced, for instance as the result of the  * construction of synthetic attributes, or by the global constructor.   *   *   * @author Waleed Kadous  * @version $Id: AttDescVecI.java,v 1.1.1.1 2002/06/28 07:36:16 waleed Exp $  */public interface AttDescVecI {        public int size();         public void add(AttDescI ad);     public AttDescI elAt(int i);         public AttDescI elCalled(String name);     }

⌨️ 快捷键说明

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