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

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

package edu.iris.dmc.seed;

public interface Record {

	public int getSequence();

	public char getType();

	public byte[] getBytes()throws SeedException;

	public byte[] get(int length);

	public void setBytes(byte[] bytes);

	public Blockette next() throws SeedException;

	public boolean isContinuation();

	public int size();

	public void add(Blockette blockette);

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

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy