Java in a Nutshell Online Quick Reference for Java 1.1
Availability: JDK 1.0
public class BufferedInputStream extends FilterInputStream { // Public Constructors public BufferedInputStream(InputStream in); public BufferedInputStream(InputStream in, int size); // Protected Instance Variables protected byte[] buf; protected int count; protected int marklimit; protected int markpos; protected int pos; // Public Instance Methods public synchronized int available() throws IOException; // Overrides FilterInputStream.available() public synchronized void mark(int readlimit); // Overrides FilterInputStream.mark() public boolean markSupported(); // Overrides FilterInputStream.markSupported() public synchronized int read() throws IOException; // Overrides FilterInputStream.read() public synchronized int read(byte[] b, int off, int len) throws IOException; // Overrides FilterInputStream.read() public synchronized void reset() throws IOException; // Overrides FilterInputStream.reset() public synchronized long skip(long n) throws IOException; // Overrides FilterInputStream.skip() }