ByteBuf |
ByteBuf.asReadOnly() |
Creates a new, read-only byte buffer that shares this buffer's content.
|
ByteBuf |
ByteBufNIO.asReadOnly() |
|
ByteBuf |
ByteBuf.clear() |
Clears this buffer.
|
ByteBuf |
ByteBufNIO.clear() |
|
ByteBuf |
ByteBuf.duplicate() |
Creates a new byte buffer that shares this buffer's content.
|
ByteBuf |
ByteBufNIO.duplicate() |
|
ByteBuf |
ByteBuf.flip() |
Flips this buffer.
|
ByteBuf |
ByteBufNIO.flip() |
|
ByteBuf |
ByteBuf.get(byte[] bytes) |
Relative bulk get method.
|
ByteBuf |
ByteBuf.get(byte[] bytes,
int offset,
int length) |
Relative bulk get method.
|
ByteBuf |
ByteBuf.get(int index,
byte[] bytes) |
Absolute bulk get method.
|
ByteBuf |
ByteBuf.get(int index,
byte[] bytes,
int offset,
int length) |
Absolute bulk get method.
|
ByteBuf |
ByteBufNIO.get(byte[] bytes) |
|
ByteBuf |
ByteBufNIO.get(byte[] bytes,
int offset,
int length) |
|
ByteBuf |
ByteBufNIO.get(int index,
byte[] bytes) |
|
ByteBuf |
ByteBufNIO.get(int index,
byte[] bytes,
int offset,
int length) |
|
ByteBuf |
RawBsonDocument.getByteBuffer() |
Returns a ByteBuf that wraps the byte array, with the proper byte order.
|
ByteBuf |
ByteBuf.limit(int newLimit) |
Sets this buffer's limit.
|
ByteBuf |
ByteBufNIO.limit(int newLimit) |
|
ByteBuf |
ByteBuf.order(ByteOrder byteOrder) |
Modifies this buffer's byte order.
|
ByteBuf |
ByteBufNIO.order(ByteOrder byteOrder) |
|
ByteBuf |
ByteBuf.position(int newPosition) |
Sets this buffer's position.
|
ByteBuf |
ByteBufNIO.position(int newPosition) |
|
ByteBuf |
ByteBuf.put(byte b) |
Relative put method (optional operation).
|
ByteBuf |
ByteBuf.put(byte[] src,
int offset,
int length) |
Relative bulk put method (optional operation).
|
ByteBuf |
ByteBuf.put(int index,
byte b) |
Absolute put method (optional operation).
|
ByteBuf |
ByteBufNIO.put(byte b) |
|
ByteBuf |
ByteBufNIO.put(byte[] src,
int offset,
int length) |
|
ByteBuf |
ByteBufNIO.put(int index,
byte b) |
|
ByteBuf |
ByteBuf.retain() |
Retain an additional reference to this object.
|