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

📄 streameventsveci.java

📁 用于multivariate时间序列分类
💻 JAVA
字号:
/**  * Interface for sets of streams.  *   * @author Waleed Kadous  * @version $Id: StreamEventsVecI.java,v 1.1.1.1 2002/06/28 07:36:16 waleed Exp $  */package tclass;   public interface StreamEventsVecI {    /**      * Get the current Event Description Vector that describes the     * format of each of the Stream Events that are part of this     * vector.     */    public EventDescVecI getEventDescVec();      /**      * Set the current Event Description Vector that describes the     * format of each of the Stream Events that are part of this     * vector.     */    public void setEventDescVec(EventDescVecI newEventDesc);     /**     * Get the number of streams in this Vector     *     * @return number of streams     */    public abstract int size();     /**     *  Add a stream to this vector     *     * @param s The stream to be added     */     public abstract void add(StreamEventsI s);     /**     * Ask for a particular stream     *     * @param i the index of the stream you want.      * @return the stream at the <em>i</em>th position of the vector.      */     public StreamEventsI elAt(int i);}

⌨️ 快捷键说明

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