| java.lang.Object | ||
| ↳ | com.google.android.gms.common.data.AbstractDataBuffer<com.google.android.gms.location.places.PlacePhotoMetadata> | |
| ↳ | com.google.android.gms.location.places.PlacePhotoMetadataBuffer | |
Data structure providing access to a list of PlacePhotoMetadata objects.
NOTE: The calling application must release() this object after it is done with it to
prevent a memory leak. Refer to the developer's guide
for more information about handling buffers.
| Public Methods | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
Get the item at the specified position.
| |||||||||||
|
[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
| |||||||||||
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.
| position | The position of the item to retrieve. |
|---|
position in this buffer.