Class java.io.ByteArrayInputStream (1.0)
public class ByteArrayInputStream extends InputStream {
// Public Constructors
public ByteArrayInputStream(byte[ ] buf);
public ByteArrayInputStream(byte[ ] buf, int offset, int length);
// Protected Instance Variables
protected byte[ ] buf;
protected int count;
protected int pos;
// Public Instance Methods
public synchronized int available( ); // Defines InputStream.available( )
public synchronized int read( ); // Defines InputStream.read( )
public synchronized int read(byte[ ] b, int off, int len); // Overrides InputStream.read( )
public synchronized void reset( ); // Overrides InputStream.reset( )
public synchronized long skip(long n); // Overrides InputStream.skip( )
}