Class FilterOutputStream
java.lang.Object
java.io.OutputStream
com.codename1.io.gzip.FilterOutputStream
- All Implemented Interfaces:
java.io.Closeable, java.io.Flushable, AutoCloseable
- Direct Known Subclasses:
DeflaterOutputStream
public class FilterOutputStream
extends java.io.OutputStream
Dummy implementation of filter output stream
-
Field Summary
Fields -
Constructor Summary
Constructors -
Method Summary
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Field Details
-
out
protected java.io.OutputStream out
-
-
Constructor Details
-
FilterOutputStream
protected FilterOutputStream(java.io.OutputStream underlying)
-
-
Method Details
-
write
public void write(int b) throws java.io.IOException - Specified by:
writein classjava.io.OutputStream- Throws:
java.io.IOException
-
write
public void write(byte[] b) throws java.io.IOException - Overrides:
writein classjava.io.OutputStream- Throws:
java.io.IOException
-
write
public void write(byte[] b, int offset, int length) throws java.io.IOException - Overrides:
writein classjava.io.OutputStream- Throws:
java.io.IOException
-
flush
public void flush() throws java.io.IOException- Specified by:
flushin interfacejava.io.Flushable- Overrides:
flushin classjava.io.OutputStream- Throws:
java.io.IOException
-
close
public void close() throws java.io.IOException- Specified by:
closein interfaceAutoCloseable- Specified by:
closein interfacejava.io.Closeable- Overrides:
closein classjava.io.OutputStream- Throws:
java.io.IOException
-