java.lang.Object | ||
↳ | com.google.android.gms.common.data.DataBuffer<T> | |
↳ | com.google.android.gms.common.data.FilteredDataBuffer<T> |
Base class for filtered buffers of typed data. A FilteredDataBuffer
wraps a
DataBuffer
.
computeRealPosition(int)
. They must also implement
getCount()
if they change the number of items.
Fields | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
mDataBuffer |
Public Constructors | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
Public Methods | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
Get the item at the specified position.
| |||||||||||
Protected Methods | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
Compute the real position after filtering.
|
[Expand]
Inherited Methods | |||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
![]() | |||||||||||||||||||||||||||||||||
![]() | |||||||||||||||||||||||||||||||||
![]() |
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.
Bundle
containing metadata for this object.Compute the real position after filtering.
Subclasses must override this method to implement their filtering.position | The position of the item to retrieve. |
---|