org.tukaani.xz
Class FinishableWrapperOutputStream

java.lang.Object
  extended by java.io.OutputStream
      extended by org.tukaani.xz.FinishableOutputStream
          extended by org.tukaani.xz.FinishableWrapperOutputStream
All Implemented Interfaces:
Closeable, Flushable

public class FinishableWrapperOutputStream
extends FinishableOutputStream

Wraps an output stream to a finishable output stream for use with raw encoders. This is not needed for XZ compression and thus most people will never need this.


Field Summary
protected  OutputStream out
          The OutputStream that has been wrapped into a FinishableWrapperOutputStream.
 
Constructor Summary
FinishableWrapperOutputStream(OutputStream out)
          Creates a new output stream which support finishing.
 
Method Summary
 void close()
          Calls out.close().
 void flush()
          Calls out.flush().
 void write(byte[] buf)
          Calls out.write(buf).
 void write(byte[] buf, int off, int len)
          Calls out.write(buf, off, len).
 void write(int b)
          Calls out.write(b).
 
Methods inherited from class org.tukaani.xz.FinishableOutputStream
finish
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

out

protected OutputStream out
The OutputStream that has been wrapped into a FinishableWrapperOutputStream.

Constructor Detail

FinishableWrapperOutputStream

public FinishableWrapperOutputStream(OutputStream out)
Creates a new output stream which support finishing. The finish() method will do nothing.

Method Detail

write

public void write(int b)
           throws IOException
Calls out.write(b).

Specified by:
write in class OutputStream
Throws:
IOException

write

public void write(byte[] buf)
           throws IOException
Calls out.write(buf).

Overrides:
write in class OutputStream
Throws:
IOException

write

public void write(byte[] buf,
                  int off,
                  int len)
           throws IOException
Calls out.write(buf, off, len).

Overrides:
write in class OutputStream
Throws:
IOException

flush

public void flush()
           throws IOException
Calls out.flush().

Specified by:
flush in interface Flushable
Overrides:
flush in class OutputStream
Throws:
IOException

close

public void close()
           throws IOException
Calls out.close().

Specified by:
close in interface Closeable
Overrides:
close in class OutputStream
Throws:
IOException