| Known Indirect Subclasses |
Interface for a buffer of typed data.
| abstract void |
close()
Releases the data buffer, for use in try-with-resources.
|
| abstract T |
get(int
position)
Returns an element on specified position.
|
| abstract int |
getCount()
|
| abstract boolean | |
| abstract Iterator<T> |
iterator()
|
| void |
release()
Releases resources used by the buffer.
|
| abstract Iterator<T> |
singleRefIterator()
In order to use this iterator it should be supported by particular
DataBuffer.
|
Releases the data buffer, for use in try-with-resources.
Both close and release shall have identical semantics, and are idempotent.
Returns an element on specified position.
This method is deprecated.
release()
is idempotent, and so is safe to call multiple times
Releases resources used by the buffer. This method is idempotent.
In order to use this iterator it should be supported by particular
DataBuffer. Be careful: there will be single reference while iterating. If
you are not sure - DO NOT USE this iterator.