Class java.io.SequenceInputStream (1.0)


public class SequenceInputStream extends InputStream {
  // Public Constructors
    public SequenceInputStream(Enumeration e);
    public SequenceInputStream(InputStream s1, InputStream s2);
  // Public Instance Methods
    public int available( ) throws IOException;  // Defines InputStream.available( )
    public void close( ) throws IOException;  // Overrides InputStream.close( )
    public int read( ) throws IOException;  // Defines InputStream.read( )
    public int read(byte[ ] buf, int pos, int len) throws IOException;  // Overrides InputStream.read( )
}