From 4af1bf8d2073de0dc41ca84113b4baa60a979577 Mon Sep 17 00:00:00 2001 From: Dirk Dougherty Date: Thu, 9 May 2013 15:04:08 -0700 Subject: Doc change: refresh gms/gcm reference docs. Change-Id: Ife17b6b3dfb387bc7de6c827c0e6db19a756534f --- .../com/google/android/gms/games/PlayerBuffer.html | 1321 ++++++++++++++++++++ 1 file changed, 1321 insertions(+) create mode 100644 docs/html/reference/com/google/android/gms/games/PlayerBuffer.html (limited to 'docs/html/reference/com/google/android/gms/games/PlayerBuffer.html') diff --git a/docs/html/reference/com/google/android/gms/games/PlayerBuffer.html b/docs/html/reference/com/google/android/gms/games/PlayerBuffer.html new file mode 100644 index 0000000..d00b957 --- /dev/null +++ b/docs/html/reference/com/google/android/gms/games/PlayerBuffer.html @@ -0,0 +1,1321 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +PlayerBuffer | Android Developers + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ + + + + + + + +
+ +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
+ + + + +
+
+ + + + +
+ public + + final + + class +

PlayerBuffer

+ + + + + + + + + extends DataBuffer<T>
+ + + + + + + + + +
+ +
+ +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + +
java.lang.Object
   ↳com.google.android.gms.common.data.DataBuffer<T>
    ↳com.google.android.gms.games.PlayerBuffer
+ + + + + + + +
+ + +

Class Overview

+

Data structure providing access to a list of players. +

+ + + + + +
+ + + + + + + + + + + + + + + + +
+ + +

Summary

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Public Methods
+ + + + + + Player + + get(int position) + +
Get the item at the specified position.
+ +
+ + + + + + + + + + + + + + + + + + + + + + + + + +
+ [Expand] +
Inherited Methods
+ +From class + + com.google.android.gms.common.data.DataBuffer + +
+ + +
+
+ +From class + + java.lang.Object + +
+ + +
+
+ +From interface + + java.lang.Iterable + +
+ + +
+
+ + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

Public Methods

+ + + + + +
+

+ + public + + + + + Player + + 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.
+ 
+ 

+
+
Returns
+
  • the item at position in this buffer. +
+
+ +
+
+ + + + + + + + + + + + + +
+ +
+ +
+ + + + + + + + -- cgit v1.1