All Downloads are FREE. Search and download functionalities are using the official Maven repository.

de.regnis.q.sequence.line.QSequenceLineCache Maven / Gradle / Ivy

The newest version!
package de.regnis.q.sequence.line;

import java.io.*;

/**
 * @author Marc Strapetz
 */
public interface QSequenceLineCache {
	int getLineCount();

	void addLine(QSequenceLine line) throws IOException;

	QSequenceLine getLine(int index) throws IOException;

	int getLineHash(int index) throws IOException;

	void close() throws IOException;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy