Default implementation of DataBuffer. An AbstractDataBuffer wraps data
provided across the binder from Google Play services.
| final void |
close()
Releases the data buffer, for use in try-with-resources.
|
| abstract T |
get(int position)
Get the item at the specified position.
|
| int |
getCount()
|
| boolean | |
| Iterator<T> |
iterator()
|
| void |
release()
Releases resources used by the buffer.
|
| Iterator<T> |
singleRefIterator()
In order to use this you should correctly override
DataBufferRef.setDataRow(int) in your DataBufferRef implementation.
|
Releases the data buffer, for use in try-with-resources.
Both close and release shall have identical semantics, and are idempotent.
Get the item at the specified position. Note that the objects returned from subsequent invocations of this method for the same position may not be identical objects, but will be equal in value. In other words:
buffer.get(i) == buffer.get(i) may return false.
buffer.get(i).equals(buffer.get(i)) will return true.
| position | The position of the item to retrieve. |
|---|
position in this buffer.Releases resources used by the buffer. This method is idempotent.
In order to use this you should correctly override DataBufferRef.setDataRow(int) in your DataBufferRef implementation. Be careful: there will be single DataBufferRef while iterating. If you are not sure - DO NOT USE this iterator.