public final class

TurnBasedMatchBuffer

extends AbstractDataBuffer<TurnBasedMatch>
java.lang.Object
   ↳ com.google.android.gms.common.data.AbstractDataBuffer<com.google.android.gms.games.multiplayer.turnbased.TurnBasedMatch>
     ↳ com.google.android.gms.games.multiplayer.turnbased.TurnBasedMatchBuffer

Class Overview

EntityBuffer implementation containing TurnBasedMatch details.

Summary

Public Methods
final TurnBasedMatch get(int position)
Get the item at the specified position.
int getCount()
[Expand]
Inherited Methods
From class com.google.android.gms.common.data.AbstractDataBuffer
From class java.lang.Object
From interface com.google.android.gms.common.data.DataBuffer
From interface java.lang.Iterable
From interface com.google.android.gms.common.api.Releasable

Public Methods

public final TurnBasedMatch get (int position)

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.

Parameters
position int: The position of the item to retrieve.
Returns
TurnBasedMatch the item at position in this buffer.

public int getCount ()

Returns
int