java.lang.Object | |
↳ | com.google.android.gms.common.data.DataBuffer<T> |
Known Direct Subclasses
AchievementBuffer,
AppStateBuffer,
GameBuffer,
InvitationBuffer,
LeaderboardBuffer,
LeaderboardScoreBuffer,
MomentBuffer,
ParticipantBuffer,
PersonBuffer,
PlayerBuffer
|
Base class for a buffer of typed data. A DataBuffer
wraps data provided across the binder
from Google Play services.
Public Methods | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
Get the item at the specified position.
| |||||||||||
[Expand]
Inherited Methods | |||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
From class
java.lang.Object
| |||||||||||||||||||||||||||||||||
From interface
java.lang.Iterable
|
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.