| it.stefanochizzolini.clown.bytes.IOutputStream
All known Subclasses: it.stefanochizzolini.clown.bytes.OutputStream,
IOutputStream | public interface IOutputStream (Code) | | Output stream interface.
|
Method Summary | |
int | write(byte[] data) Writes a byte array into the stream.
Parameters: data - Byte array to write into the stream. | int | write(byte[] data, int offset, int length) Writes a byte range into the stream.
Parameters: data - Byte array to write into the stream. Parameters: offset - Location in the byte array at which writing begins. Parameters: length - Number of bytes to write. | int | write(String data) Writes a string into the stream.
Parameters: data - String to write into the stream. | int | write(IInputStream data) Writes an
IInputStream IInputStream into the stream.
Parameters: data - IInputStream to write into the stream. |
write | int write(byte[] data)(Code) | | Writes a byte array into the stream.
Parameters: data - Byte array to write into the stream. Number of bytes written. |
write | int write(byte[] data, int offset, int length)(Code) | | Writes a byte range into the stream.
Parameters: data - Byte array to write into the stream. Parameters: offset - Location in the byte array at which writing begins. Parameters: length - Number of bytes to write. Number of bytes written. |
write | int write(String data)(Code) | | Writes a string into the stream.
Parameters: data - String to write into the stream. Number of bytes written. |
write | int write(IInputStream data)(Code) | | Writes an
IInputStream IInputStream into the stream.
Parameters: data - IInputStream to write into the stream. Number of bytes written. |
|
|