streamattvali.java

来自「用于multivariate时间序列分类」· Java 代码 · 共 36 行

JAVA
36
字号
/**  * A representation of all the attribute values associated with a particular   * stream. The format of the stream is given by an AttDescVecI object.   *   * @author Waleed Kadous  * @version $Id: StreamAttValI.java,v 1.1.1.1 2002/06/28 07:36:16 waleed Exp $  */package tclass;   import java.io.*; public interface StreamAttValI  {        /**     *  Set the value of the <i>i</i>th attribute to a particular      *  value.      *       *  @param att The attribute to change. More info on the attributes can      *              be found from the AttDescVecI object.      */     public void setAtt(int att, float value);     /**      * Get the value of the <i>i</i>th attribute      *     * @param att Attribute you want the value for.     * @return the value of the <i>i</i>th attribute.      */    public float getAtt(int att);    }

⌨️ 快捷键说明

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