Class | Description |
---|---|
BaseBuffer |
Base implementation of the Buffer API providing variables and accessors for the navigational
arrays, methods for expressing and checking the buffer request flags, methods and mechanism for
get-release counting, boilerplate error checks and their associated exceptions, and default
implementations of some methods for access to the buffer content.
|
SimpleBuffer |
Buffer API over a read-only one-dimensional array of one-byte items.
|
SimpleStringBuffer |
Buffer API that appears to be a one-dimensional array of one-byte items providing read-only API,
but which is actually backed by a Java String.
|
SimpleWritableBuffer |
Buffer API over a writable one-dimensional array of one-byte items.
|
Strided1DBuffer |
Read-only buffer API over a one-dimensional array of one-byte items, that are evenly-spaced in a
storage array.
|
Strided1DWritableBuffer |
Read-write buffer API over a one-dimensional array of one-byte items, that are evenly-spaced in a
storage array.
|
ZeroByteBuffer |
Buffer API over a zero length, one-dimensional array of one-byte items.
|