-
- All Superinterfaces:
org.refcodes.component.Closable
public interface BytesOutputStream extends org.refcodes.component.Closable(asOutputStreamdoes not provide some useful *interface*)- See Also:
OutputStream
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidflush()Flush.voidwrite(byte[] b)Write.voidwrite(byte[] b, int off, int len)Write.voidwrite(int b)Write.
-
-
-
Method Detail
-
write
void write(int b) throws IOExceptionWrite.- Parameters:
b- the b- Throws:
IOException- the open exception
-
write
void write(byte[] b) throws IOExceptionWrite.- Parameters:
b- the b- Throws:
IOException- the open exception
-
write
void write(byte[] b, int off, int len) throws IOExceptionWrite.- Parameters:
b- the boff- the offlen- the len- Throws:
IOException- the open exception
-
flush
void flush() throws IOExceptionFlush.- Throws:
IOException- the open exception
-
-