Package com.fasterxml.jackson.core.io
Class DataOutputAsStream
- java.lang.Object
-
- java.io.OutputStream
-
- com.fasterxml.jackson.core.io.DataOutputAsStream
-
- All Implemented Interfaces:
java.io.Closeable,java.io.Flushable,java.lang.AutoCloseable
public class DataOutputAsStream extends java.io.OutputStreamHelper class to support use ofDataOutputfor output, directly, without caller having to provide for implementation.- Since:
- 2.8
-
-
Constructor Summary
Constructors Constructor Description DataOutputAsStream(java.io.DataOutput out)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidwrite(byte[] b)voidwrite(byte[] b, int offset, int length)voidwrite(int b)
-
-
-
Method Detail
-
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
-
-