public final class

MetadataBuffer

extends DataBuffer<T>
java.lang.Object
   ↳ com.google.android.gms.common.data.DataBuffer<T>
     ↳ com.google.android.gms.drive.MetadataBuffer

Class Overview

A data buffer that points to Metadata entries. Objects of this class are returned in responses to list requests (such as query(GoogleApiClient, Query)). This object behaves as an Iterable, as well as allowing indexed access to its entries. Be sure to call close on any buffers when you are done with them.

Summary

Public Methods
Metadata get(int row)
Get the item at the specified position.
String getNextPageToken()
[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 Metadata get (int row)

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

public String getNextPageToken ()