java.lang.Object | |
↳ | com.google.android.gms.common.data.DataBufferRef |
A DataBufferRef
provides a pointer to a row in a DataBuffer
. Note that if the
underlying DataBuffer
is closed, the reference will no longer be valid.
Fields | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
mDataHolder | |||||||||||
mDataRow |
Public Constructors | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
Public Methods | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
Protected Methods | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
Copies the String content in the given column at the position of this reference into a
CharArrayBuffer . | |||||||||||
Retrieves the boolean value for a given column at the position of this reference.
| |||||||||||
Retrieves the byte array value for a given column at the position of this reference.
| |||||||||||
Retrieves the integer value for a given column at the position of this reference.
| |||||||||||
Retrieves the long value for a given column at the position of this reference.
| |||||||||||
Retrieves the String value for a given column at the position of this reference.
| |||||||||||
Returns whether the given column at the position of this reference contains null.
| |||||||||||
Retrieves the column data as a URI if possible, checking for null values.
|
[Expand]
Inherited Methods | |||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
![]() |
Copies the String content in the given column at the position of this reference into a
CharArrayBuffer
.
column | The column to retrieve. |
---|---|
dataOut | The CharArrayBuffer to copy into. |
IllegalArgumentException | if the column does not exist, the position is invalid, or the data holder has been closed. |
---|
Retrieves the boolean value for a given column at the position of this reference.
column | The column to retrieve. |
---|
IllegalArgumentException | if the column does not exist, the position is invalid, or the data holder has been closed. |
---|
Retrieves the byte array value for a given column at the position of this reference.
column | The column to retrieve. |
---|
IllegalArgumentException | if the column does not exist, the position is invalid, or the data holder has been closed. |
---|
Retrieves the integer value for a given column at the position of this reference.
column | The column to retrieve. |
---|
IllegalArgumentException | if the column does not exist, the position is invalid, or the data holder has been closed. |
---|
Retrieves the long value for a given column at the position of this reference.
column | The column to retrieve. |
---|
IllegalArgumentException | if the column does not exist, the position is invalid, or the data holder has been closed. |
---|
Retrieves the String value for a given column at the position of this reference.
column | The column to retrieve. |
---|
IllegalArgumentException | if the column does not exist, the position is invalid, or the data holder has been closed. |
---|
Returns whether the given column at the position of this reference contains null.
column | The column to check. |
---|
IllegalArgumentException | if the column does not exist, the position is invalid, or the data holder has been closed. |
---|
Retrieves the column data as a URI if possible, checking for null values. Will return null if the column contains null.
column | The column to retrieve. |
---|
IllegalArgumentException | if the column does not exist, the position is invalid, or the data holder has been closed. |
---|