Class Overview
DataBuffer
implementation containing Invitation data.
Summary
Public Methods |
final
T
|
get(int position)
Get the item at the specified position.
|
int
|
getCount()
|
[Expand]
Inherited Methods |
From class
com.google.android.gms.common.data.DataBuffer
final
void
|
close()
This method is deprecated.
use release() instead
|
int
|
describeContents()
|
abstract
T
|
get(int position)
Get the item at the specified position.
|
int
|
getCount()
|
boolean
|
isClosed()
This method is deprecated.
release() is idempotent, and so is safe to call multiple times
|
Iterator<T>
|
iterator()
|
void
|
release()
Releases resources used by the buffer.
|
Iterator<T>
|
singleRefIterator()
In order to use this one should correctly override setDataRow(int)
in his DataBufferRef implementation.
|
|
From class
java.lang.Object
Object
|
clone()
|
boolean
|
equals(Object arg0)
|
void
|
finalize()
|
final
Class<?>
|
getClass()
|
int
|
hashCode()
|
final
void
|
notify()
|
final
void
|
notifyAll()
|
String
|
toString()
|
final
void
|
wait()
|
final
void
|
wait(long arg0, int arg1)
|
final
void
|
wait(long arg0)
|
|
From interface
com.google.android.gms.common.api.Releasable
|
From interface
java.lang.Iterable
abstract
Iterator<T>
|
iterator()
|
|
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.