📄 datareader.java
字号:
package dragon.ml.seqmodel.data;/** * <p>Interface of sequence data reader</p> * <p></p> * <p>Copyright: Copyright (c) 2005</p> * <p>Company: IST, Drexel University</p> * @author Davis Zhou * @version 1.0 */public interface DataReader { /** * Reads out all sequences * @return a dataset */ public Dataset read(); /** * Reads out one sequence and the pointer autoamtically moves to the next sequence. * @return a data sequence */ public DataSequence readRow(); /** * Releases occupied resources */ public void close();}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -