Class DelegatingOutputStream
- java.lang.Object
- 
- java.io.OutputStream
- 
- org.apache.johnzon.mapper.internal.DelegatingOutputStream
 
 
- 
- All Implemented Interfaces:
- Closeable,- Flushable,- AutoCloseable
 
 public class DelegatingOutputStream extends OutputStream 
- 
- 
Field SummaryFields Modifier and Type Field Description private OutputStreamoutputStream
 - 
Constructor SummaryConstructors Constructor Description DelegatingOutputStream(OutputStream outputStream)
 - 
Method SummaryAll Methods Instance Methods Concrete Methods Modifier and Type Method Description voidclose()voidflush()voidwrite(byte[] b)voidwrite(byte[] b, int off, int len)voidwrite(int b)- 
Methods inherited from class java.io.OutputStreamnullOutputStream
 
- 
 
- 
- 
- 
Field Detail- 
outputStreamprivate final OutputStream outputStream 
 
- 
 - 
Constructor Detail- 
DelegatingOutputStreampublic DelegatingOutputStream(OutputStream outputStream) 
 
- 
 - 
Method Detail- 
closepublic void close() throws IOException- Specified by:
- closein interface- AutoCloseable
- Specified by:
- closein interface- Closeable
- Overrides:
- closein class- OutputStream
- Throws:
- IOException
 
 - 
writepublic void write(int b) throws IOException- Specified by:
- writein class- OutputStream
- Throws:
- IOException
 
 - 
writepublic void write(byte[] b) throws IOException- Overrides:
- writein class- OutputStream
- Throws:
- IOException
 
 - 
writepublic void write(byte[] b, int off, int len) throws IOException- Overrides:
- writein class- OutputStream
- Throws:
- IOException
 
 - 
flushpublic void flush() throws IOException- Specified by:
- flushin interface- Flushable
- Overrides:
- flushin class- OutputStream
- Throws:
- IOException
 
 
- 
 
-