public interface WritableChannel
| Modifier and Type | Method and Description |
|---|---|
WritableChannel |
put(byte value)
Writes a
byte to this channel. |
WritableChannel |
put(byte[] value,
int length)
Writes a
byte[] to this channel. |
WritableChannel |
putDouble(double value)
Writes a
double to this channel. |
WritableChannel |
putFloat(float value)
Writes a
float to this channel. |
WritableChannel |
putInt(int value)
Writes a
int to this channel. |
WritableChannel |
putLong(long value)
Writes a
long to this channel. |
WritableChannel |
putShort(short value)
Writes a
short to this channel. |
WritableChannel put(byte value) throws IOException
byte to this channel.value - byte value.IOException - if I/O error occurs.WritableChannel putShort(short value) throws IOException
short to this channel.value - short value.IOException - if I/O error occurs.WritableChannel putInt(int value) throws IOException
int to this channel.value - int value.IOException - if I/O error occurs.WritableChannel putLong(long value) throws IOException
long to this channel.value - long value.IOException - if I/O error occurs.WritableChannel putFloat(float value) throws IOException
float to this channel.value - float value.IOException - if I/O error occurs.WritableChannel putDouble(double value) throws IOException
double to this channel.value - double value.IOException - if I/O error occurs.WritableChannel put(byte[] value, int length) throws IOException
byte[] to this channel.value - byte array.length - number of items of the array to write.IOException - if I/O error occurs.Copyright © 2002–2017 The Neo4j Graph Database Project. All rights reserved.