public final class

MomentBuffer

extends DataBuffer<T>
java.lang.Object
   ↳ com.google.android.gms.common.data.DataBuffer<T>
     ↳ com.google.android.gms.plus.model.moments.MomentBuffer

Class Overview

Data structure providing access to a list of Moment objects.

Summary

[Expand]
Inherited Fields
From class com.google.android.gms.common.data.DataBuffer
Public Methods
Moment 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 Moment 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.