Class java.io.InputStream (1.0)
public abstract class InputStream extends Object {
// Public Constructor
public InputStream( ); // Empty
// Public Instance Methods
public abstract int available( ) throws IOException;
public void close( ) throws IOException; // Empty
public synchronized void mark(int readlimit); // Empty
public boolean markSupported( );
public abstract int read( ) throws IOException;
public int read(byte[ ] b) throws IOException;
public int read(byte[ ] b, int off, int len) throws IOException;
public synchronized void reset( ) throws IOException;
public long skip(long n) throws IOException;
}