net.metanotion.util
Class SequenceReader

java.lang.Object
  extended by java.io.Reader
      extended by net.metanotion.util.SequenceReader
All Implemented Interfaces:
java.io.Closeable, java.lang.Readable

public final class SequenceReader
extends java.io.Reader

Chains a sequence of java.io.Reader's together. Similar to java.io.SequenceInputStream


Field Summary
 
Fields inherited from class java.io.Reader
lock
 
Constructor Summary
SequenceReader(java.util.Enumeration<? extends java.io.Reader> e)
           
 
Method Summary
 void close()
           
 int read(char[] cbuf, int off, int len)
           
 
Methods inherited from class java.io.Reader
mark, markSupported, read, read, read, ready, reset, skip
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

SequenceReader

public SequenceReader(java.util.Enumeration<? extends java.io.Reader> e)
Method Detail

read

public int read(char[] cbuf,
                int off,
                int len)
         throws java.io.IOException
Specified by:
read in class java.io.Reader
Throws:
java.io.IOException

close

public void close()
Specified by:
close in interface java.io.Closeable
Specified by:
close in class java.io.Reader