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.OutputStream
Helper class to support use ofDataOutput
for 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 void
write(byte[] b)
void
write(byte[] b, int offset, int length)
void
write(int b)
-
-
-
Method Detail
-
write
public void write(int b) throws java.io.IOException
- Specified by:
write
in classjava.io.OutputStream
- Throws:
java.io.IOException
-
write
public void write(byte[] b) throws java.io.IOException
- Overrides:
write
in classjava.io.OutputStream
- Throws:
java.io.IOException
-
write
public void write(byte[] b, int offset, int length) throws java.io.IOException
- Overrides:
write
in classjava.io.OutputStream
- Throws:
java.io.IOException
-
-