SequenceInputStream.SequenceInputStream
Class Overview | Class Members |
This Package |
All Packages
public SequenceInputStream( Enumeration e )
Parameters
- e
- an enumeration of input streams.
Description
Constructs a new sequence input stream initialized to the
specified enumeration of input streams. Each object in the
enumeration must be an InputStream.
See Also
Enumeration
public SequenceInputStream( InputStream s1,
InputStream s2 )
Parameters
- s1
- the first input stream to read.
- s2
- the second input stream to read.
Description
Constructs a new sequence input stream initialized to read first
from the input stream s1, and then from the input
stream s2.