Package | Description |
---|---|
_templates.java.nio | |
_templates.javolution.io |
Modifier and Type | Method and Description |
---|---|
static ByteBuffer |
ByteBuffer.allocate(int capacity) |
static ByteBuffer |
ByteBuffer.allocateDirect(int capacity) |
ByteBuffer |
ByteBuffer.get(byte[] dst) |
ByteBuffer |
ByteBuffer.get(byte[] dst,
int offset,
int length) |
ByteBuffer |
ByteBuffer.order(ByteOrder endian) |
ByteBuffer |
ByteBuffer.put(byte b) |
ByteBuffer |
ByteBuffer.put(byte[] src) |
ByteBuffer |
ByteBuffer.put(byte[] src,
int offset,
int length) |
ByteBuffer |
ByteBuffer.put(ByteBuffer src) |
ByteBuffer |
ByteBuffer.put(int index,
byte b) |
ByteBuffer |
ByteBuffer.putChar(char value) |
ByteBuffer |
ByteBuffer.putChar(int index,
char value) |
ByteBuffer |
ByteBuffer.putDouble(double value) |
ByteBuffer |
ByteBuffer.putDouble(int index,
double value) |
ByteBuffer |
ByteBuffer.putFloat(float value) |
ByteBuffer |
ByteBuffer.putFloat(int index,
float value) |
ByteBuffer |
ByteBuffer.putInt(int value) |
ByteBuffer |
ByteBuffer.putInt(int index,
int value) |
ByteBuffer |
ByteBuffer.putLong(int index,
long value) |
ByteBuffer |
ByteBuffer.putLong(long value) |
ByteBuffer |
ByteBuffer.putShort(int index,
short value) |
ByteBuffer |
ByteBuffer.putShort(short value) |
static ByteBuffer |
ByteBuffer.wrap(byte[] array) |
Modifier and Type | Method and Description |
---|---|
ByteBuffer |
ByteBuffer.put(ByteBuffer src) |
Modifier and Type | Method and Description |
---|---|
ByteBuffer |
Struct.getByteBuffer()
Returns the byte buffer for this struct.
|
Modifier and Type | Method and Description |
---|---|
UTF8ByteBufferWriter |
UTF8ByteBufferWriter.setByteBuffer(ByteBuffer byteBuffer)
Deprecated.
Replaced by
UTF8ByteBufferWriter.setOutput(ByteBuffer) |
UTF8ByteBufferReader |
UTF8ByteBufferReader.setByteBuffer(ByteBuffer byteBuffer)
Deprecated.
Replaced by
UTF8ByteBufferReader.setInput(ByteBuffer) |
Struct |
Struct.setByteBuffer(ByteBuffer byteBuffer,
int position)
Sets the current byte buffer for this struct.
|
UTF8ByteBufferReader |
UTF8ByteBufferReader.setInput(ByteBuffer byteBuffer)
Sets the
ByteBuffer to use for reading available bytes
from current buffer position. |
UTF8ByteBufferWriter |
UTF8ByteBufferWriter.setOutput(ByteBuffer byteBuffer)
Sets the byte buffer to use for writing until this writer is closed.
|
Copyright © 2005–2018 Javolution. All rights reserved.