static int |
ChannelBuffers.compare(ChannelBuffer bufferA,
ChannelBuffer bufferB) |
|
int |
AbstractChannelBuffer.compareTo(ChannelBuffer that) |
|
static boolean |
ChannelBuffers.equals(ChannelBuffer bufferA,
ChannelBuffer bufferB) |
|
void |
AbstractChannelBuffer.getBytes(int index,
ChannelBuffer dst) |
|
void |
AbstractChannelBuffer.getBytes(int index,
ChannelBuffer dst,
int length) |
|
void |
ByteBufferBackedChannelBuffer.getBytes(int index,
ChannelBuffer dst,
int dstIndex,
int length) |
|
void |
ChannelBuffer.getBytes(int index,
ChannelBuffer dst) |
Transfers this buffer's data to the specified destination starting at the
specified absolute index until the destination becomes
non-writable.
|
void |
ChannelBuffer.getBytes(int index,
ChannelBuffer dst,
int length) |
Transfers this buffer's data to the specified destination starting at the
specified absolute index.
|
void |
ChannelBuffer.getBytes(int index,
ChannelBuffer dst,
int dstIndex,
int length) |
Transfers this buffer's data to the specified destination starting at the
specified absolute index.
|
void |
DynamicChannelBuffer.getBytes(int index,
ChannelBuffer dst,
int dstIndex,
int length) |
|
void |
HeapChannelBuffer.getBytes(int index,
ChannelBuffer dst,
int dstIndex,
int length) |
|
static int |
ChannelBuffers.hasCode(ChannelBuffer buffer) |
|
void |
AbstractChannelBuffer.readBytes(ChannelBuffer dst) |
|
void |
AbstractChannelBuffer.readBytes(ChannelBuffer dst,
int length) |
|
void |
AbstractChannelBuffer.readBytes(ChannelBuffer dst,
int dstIndex,
int length) |
|
void |
ChannelBuffer.readBytes(ChannelBuffer dst) |
Transfers this buffer's data to the specified destination starting at the
current readerIndex until the destination becomes non-writable,
and increases the readerIndex by the number of the transferred
bytes.
|
void |
ChannelBuffer.readBytes(ChannelBuffer dst,
int length) |
Transfers this buffer's data to the specified destination starting at the
current readerIndex and increases the readerIndex by the
number of the transferred bytes (= length).
|
void |
ChannelBuffer.readBytes(ChannelBuffer dst,
int dstIndex,
int length) |
Transfers this buffer's data to the specified destination starting at the
current readerIndex and increases the readerIndex by the
number of the transferred bytes (= length).
|
void |
AbstractChannelBuffer.setBytes(int index,
ChannelBuffer src) |
|
void |
AbstractChannelBuffer.setBytes(int index,
ChannelBuffer src,
int length) |
|
void |
ByteBufferBackedChannelBuffer.setBytes(int index,
ChannelBuffer src,
int srcIndex,
int length) |
|
void |
ChannelBuffer.setBytes(int index,
ChannelBuffer src) |
Transfers the specified source buffer's data to this buffer starting at
the specified absolute index until the source buffer becomes
unreadable.
|
void |
ChannelBuffer.setBytes(int index,
ChannelBuffer src,
int length) |
Transfers the specified source buffer's data to this buffer starting at
the specified absolute index.
|
void |
ChannelBuffer.setBytes(int index,
ChannelBuffer src,
int srcIndex,
int length) |
Transfers the specified source buffer's data to this buffer starting at
the specified absolute index.
|
void |
DynamicChannelBuffer.setBytes(int index,
ChannelBuffer src,
int srcIndex,
int length) |
|
void |
HeapChannelBuffer.setBytes(int index,
ChannelBuffer src,
int srcIndex,
int length) |
|
void |
AbstractChannelBuffer.writeBytes(ChannelBuffer src) |
|
void |
AbstractChannelBuffer.writeBytes(ChannelBuffer src,
int length) |
|
void |
AbstractChannelBuffer.writeBytes(ChannelBuffer src,
int srcIndex,
int length) |
|
void |
ChannelBuffer.writeBytes(ChannelBuffer src) |
Transfers the specified source buffer's data to this buffer starting at
the current writerIndex until the source buffer becomes
unreadable, and increases the writerIndex by the number of the
transferred bytes.
|
void |
ChannelBuffer.writeBytes(ChannelBuffer src,
int length) |
Transfers the specified source buffer's data to this buffer starting at
the current writerIndex and increases the writerIndex by
the number of the transferred bytes (= length).
|
void |
ChannelBuffer.writeBytes(ChannelBuffer src,
int srcIndex,
int length) |
Transfers the specified source buffer's data to this buffer starting at
the current writerIndex and increases the writerIndex by
the number of the transferred bytes (= length).
|
void |
DynamicChannelBuffer.writeBytes(ChannelBuffer src,
int srcIndex,
int length) |
|