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

📄 streameventsi.java

📁 用于multivariate时间序列分类
💻 JAVA
字号:
/**  * A store of all the events associated with a stream. For each channel,   * an EventVecI can be requested. Note!! Stream events are defined by   * an EventDescVecI, which contains all the information about the various   * types of events. At this stage, the channel-based representation has   * disappeared to be replaced by this event-based representation. This   * is useful for future expansion, since it is likely that at some  * point, we are going to want to switch to multi-channel events.   *  *   * @author Waleed Kadous  * @version $Id: StreamEventsI.java,v 1.1.1.1 2002/06/28 07:36:16 waleed Exp $  */package tclass;   public interface StreamEventsI {       /**     * Gets the comment associated with this object      *      * @return the comment of this label      */    public abstract String getComment();     /**     * Set the label of this stream.      *     * @param comment the comment associated with this stream     */    public abstract void setComment(String comment);         /**      *  Returns true if the real class of this stream is known.      *       *  @return <code>true</code> if the class of this stream is known.      *     */     public EventVecI getEvents(int index);     public String prettyPrint(EventDescVecI edvi);     /**     * Get the classification for this stream      */     /**     * Set the classification of this stream      */ }

⌨️ 快捷键说明

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