?? clusterveci.java
字號:
package tclass; import java.io.*; /** * Represents a vector of clusters. * * * @author Waleed Kadous * @version $Id: ClusterVecI.java,v 1.1.1.1 2002/06/28 07:36:16 waleed Exp $ */public interface ClusterVecI extends Serializable, Cloneable { /** Get the number of clusters described in this set. * * @return number of clusters. */ public int size(); /** * Creates a copy of this object * * @return A shallow copy of the current object. */ public Object clone(); /** * Get a cluster by index. * * @param i Tndex of the cluster you want. <code>0 <= i < this.size()</code> * @return The <i>i</i>th element if i is valid, and null otherwise. * */ public ClusterI elAt(int i); /** * Call findMatch on each cluster to find the whole best thingie * */ /* public StreamAttValI matchAll(StreamI si, StreamEventsI sei); */ public ClusterMem findBestLabel(EventI event); }
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -