public class

DataItemBuffer

extends DataBuffer<T>
implements Result
java.lang.Object
   ↳ com.google.android.gms.common.data.DataBuffer<T>
     ↳ com.google.android.gms.wearable.DataItemBuffer

Class Overview

Data structure holding reference to a set of DataItems.

Summary

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

Public Methods

public final T 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 The position of the item to retrieve.
Returns
  • the item at position in this buffer.

public int getCount ()

public Status getStatus ()