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

com.darwinsys.io.DumpSource Maven / Gradle / Ivy

There is a newer version: 1.8.0
Show newest version
package com.darwinsys.io;

import java.io.IOException;

/** The general contract of a class to get bytes.
 * Used in Dumper and related classes.
 */
public interface DumpSource {
	/** Get the next byte, or, -1.
	 * @return The next byte
	 * @throws IOException If duh.
	 */
	public int get() throws IOException;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy