Buffer<T> |
Buffer.putLong(long longVal,
Endian endianness) |
Writes a long in the specified endianness.
|
private Buffer<T> |
Buffer.putNullTerminatedString(java.lang.String string,
java.nio.charset.Charset charset,
Endian endianness) |
|
private Buffer<T> |
Buffer.putString(java.lang.String string,
java.nio.charset.Charset charset,
Endian endianness) |
|
Buffer<T> |
Buffer.putUInt16(int uint16,
Endian endianness) |
Writes a uint16 integer in the specified endianness.
|
Buffer<T> |
Buffer.putUInt24(int uint24,
Endian endianness) |
Writes a uint24 integer in the specified endianness.
|
Buffer<T> |
Buffer.putUInt32(long uint32,
Endian endianness) |
Writes a uint32 integer in the specified endianness.
|
Buffer<T> |
Buffer.putUInt64(long uint64,
Endian endianness) |
Writes a uint64 integer in the specified endianness.
|
long |
Buffer.readLong(Endian endianness) |
Read a long from the buffer using the specified endianness.
|
private java.lang.String |
Buffer.readNullTerminatedString(java.nio.charset.Charset charset,
Endian endianness) |
|
private java.lang.String |
Buffer.readString(java.nio.charset.Charset charset,
int length,
Endian endianness) |
|
int |
Buffer.readUInt16(Endian endianness) |
Read a uint16 from the buffer using the specified endianness.
|
int |
Buffer.readUInt24(Endian endianness) |
Read a uint24 from the buffer using the specified endianness.
|
long |
Buffer.readUInt32(Endian endianness) |
Read a uint32 from the buffer using the specified endianness.
|
long |
Buffer.readUInt64(Endian endianness) |
Read a uint64 from the buffer using the specified endianness.
|