Java in a Nutshell Online Quick Reference for Java 1.1
Availability: JDK 1.1
public class CheckedInputStream extends FilterInputStream { // Public Constructor public CheckedInputStream(InputStream in, Checksum cksum); // Public Instance Methods public Checksum getChecksum(); public int read() throws IOException; // Overrides FilterInputStream.read() public int read(byte[] buf, int off, int len) throws IOException; // Overrides FilterInputStream.read() public long skip(long n) throws IOException; // Overrides FilterInputStream.skip() }