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

se.l4.commons.io.ExtendedDataInput Maven / Gradle / Ivy

There is a newer version: 1.2.2
Show newest version
package se.l4.commons.io;

import java.io.Closeable;
import java.io.DataInput;
import java.io.IOException;

public interface ExtendedDataInput
	extends DataInput, Closeable
{
	int read()
		throws IOException;

	int readVInt()
		throws IOException;

	long readVLong()
		throws IOException;

	String readString()
		throws IOException;

	Bytes readBytes()
		throws IOException;

	Bytes readTemporaryBytes()
		throws IOException;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy