Module java.base
Package java.io

Class SequenceInputStream

java.lang.Object
java.io.InputStream
java.io.SequenceInputStream
All Implemented Interfaces:
Closeable, AutoCloseable

public class SequenceInputStream extends InputStream
A SequenceInputStream represents the logical concatenation of other input streams. It starts out with an ordered collection of input streams and reads from the first one until end of file is reached, whereupon it reads from the second one, and so on, until end of file is reached on the last of the contained input streams.
Since:
1.0