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

edu.iris.dmc.seed.Record Maven / Gradle / Ivy

The newest version!
package edu.iris.dmc.seed;

public interface Record {

	public int getSequence();

	public char getType();

	public byte[] getBytes() throws SeedException;

	public int getAvailableBytes();

	public byte[] get(int length);

	public void setBytes(byte[] bytes);

	public Blockette next() throws SeedException;

	public boolean isContinuation();

	public int size();

	public byte[] add(byte[] bytes)throws SeedException;

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy