| Interface | Description |
|---|---|
| ByteBufferWrapper | |
| StringToByteBuffer |
Ugly hack to get gwt internal stuff into nio, see StringByteBuffer in nio
|
| Class | Description |
|---|---|
| Buffer |
A buffer is a list of elements of a specific primitive type.
|
| ByteBuffer |
A buffer for bytes.
|
| ByteOrder |
Defines byte order constants.
|
| CharBuffer |
A buffer of chars.
|
| DirectByteBuffer |
DirectByteBuffer, DirectReadWriteByteBuffer and DirectReadOnlyHeapByteBuffer compose
the implementation of direct byte buffers.
|
| DirectReadWriteByteBuffer |
DirectByteBuffer, DirectReadWriteByteBuffer and DirectReadOnlyByteBuffer compose
the implementation of direct byte buffers.
|
| DoubleBuffer |
A buffer of doubles.
|
| FloatBuffer |
A buffer of floats.
|
| IntBuffer |
A buffer of ints.
|
| LongBuffer |
A buffer of longs.
|
| ShortBuffer |
A buffer of shorts.
|
| Enum | Description |
|---|---|
| Endianness |
| Exception | Description |
|---|---|
| BufferOverflowException |
A
BufferOverflowException is thrown when elements are written
to a buffer but there is not enough remaining space in the buffer. |
| BufferUnderflowException |
A
BufferUnderflowException is thrown when elements are read
from a buffer but there are not enough remaining elements in the buffer. |
| InvalidMarkException |
An
InvalidMarkException is thrown when reset() is called on a
buffer, but no mark has been set previously. |
| ReadOnlyBufferException |
A
ReadOnlyBufferException is thrown when some write operation is
called on a read-only buffer. |
Copyright © 2020 Dmitrii Tikhomirov. All rights reserved.