Package net.morimekta.util.io
Class ByteBufferOutputStream
- java.lang.Object
-
- java.io.OutputStream
-
- net.morimekta.util.io.ByteBufferOutputStream
-
- All Implemented Interfaces:
java.io.Closeable,java.io.Flushable,java.lang.AutoCloseable
public class ByteBufferOutputStream extends java.io.OutputStreamSimple output stream backed by a byte buffer. If the
-
-
Constructor Summary
Constructors Constructor Description ByteBufferOutputStream(java.nio.ByteBuffer buffer)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidwrite(byte[] bytes)voidwrite(byte[] bytes, int off, int len)voidwrite(int i)
-
-
-
Method Detail
-
write
public void write(int i) throws java.io.IOException- Specified by:
writein classjava.io.OutputStream- Throws:
java.io.IOException
-
write
public void write(@Nonnull byte[] bytes) throws java.io.IOException- Overrides:
writein classjava.io.OutputStream- Throws:
java.io.IOException
-
write
public void write(@Nonnull byte[] bytes, int off, int len) throws java.io.IOException- Overrides:
writein classjava.io.OutputStream- Throws:
java.io.IOException
-
-