java.lang.Object | ||
↳ | com.google.android.gms.common.data.DataBuffer<T> | |
↳ | com.google.android.gms.games.multiplayer.turnbased.TurnBasedMatchBuffer |
DataBuffer
implementation containing TurnBasedMatch details.
Public Constructors | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
Public Methods | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
Get the item at the specified position.
| |||||||||||
Protected Methods | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
Count the number of children underneath the entity at the given external position.
| |||||||||||
Subclasses must implement this method to get an entry for the provided rowIndex.
| |||||||||||
Subclasses must implement this method to indicate a column in the data holder that can be
used to determine where the boundaries between the primary data entities occur.
|
[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.
Count the number of children underneath the entity at the given external position.
pos | External position of the entity. |
---|
Subclasses must implement this method to get an entry for the provided rowIndex.
rowIndex | Row index of underlying DataHolder to construct an entry for. |
---|---|
numChildren | The number of children underneath the given entry. |
Subclasses must implement this method to indicate a column in the data holder that can be used to determine where the boundaries between the primary data entities occur.
Note that the column must contain a String value.