public
class
CursorWindow
extends SQLiteClosable
implements
Parcelable
java.lang.Object | ||
↳ | android.database.sqlite.SQLiteClosable | |
↳ | android.database.CursorWindow |
A buffer containing multiple cursor rows.
A CursorWindow
is read-write when initially created and used locally.
When sent to a remote process (by writing it to a Parcel
), the remote process
receives a read-only view of the cursor window. Typically the cursor window
will be allocated by the producer, filled with data, and then sent to the
consumer for reading.
Inherited constants |
---|
From
interface
android.os.Parcelable
|
Fields | |
---|---|
public
static
final
Creator<CursorWindow> |
CREATOR
|
Public constructors | |
---|---|
CursorWindow(String name)
Creates a new empty cursor window and gives it a name. |
|
CursorWindow(boolean localWindow)
This constructor was deprecated
in API level 15.
There is no longer a distinction between local and remote
cursor windows. Use the |
Public methods | |
---|---|
boolean
|
allocRow()
Allocates a new row at the end of this cursor window. |
void
|
clear()
Clears out the existing contents of the window, making it safe to reuse for new data. |
void
|
copyStringToBuffer(int row, int column, CharArrayBuffer buffer)
Copies the text of the field at the specified row and column index into
a |
int
|
describeContents()
Describe the kinds of special objects contained in this Parcelable instance's marshaled representation. |
void
|
freeLastRow()
Frees the last row in this cursor window. |
byte[]
|
getBlob(int row, int column)
Gets the value of the field at the specified row and column index as a byte array. |
double
|
getDouble(int row, int column)
Gets the value of the field at the specified row and column index as a
|
float
|
getFloat(int row, int column)
Gets the value of the field at the specified row and column index as a
|
int
|
getInt(int row, int column)
Gets the value of the field at the specified row and column index as an
|
long
|
getLong(int row, int column)
Gets the value of the field at the specified row and column index as a |
int
|
getNumRows()
Gets the number of rows in this window. |
short
|
getShort(int row, int column)
Gets the value of the field at the specified row and column index as a
|
int
|
getStartPosition()
Gets the start position of this cursor window. |
String
|
getString(int row, int column)
Gets the value of the field at the specified row and column index as a string. |
int
|
getType(int row, int column)
Returns the type of the field at the specified row and column index. |
boolean
|
isBlob(int row, int column)
This method was deprecated
in API level 11.
Use |
boolean
|
isFloat(int row, int column)
This method was deprecated
in API level 11.
Use |
boolean
|
isLong(int row, int column)
This method was deprecated
in API level 11.
Use |
boolean
|
isNull(int row, int column)
This method was deprecated
in API level 11.
Use |
boolean
|
isString(int row, int column)
This method was deprecated
in API level 11.
Use |
static
CursorWindow
|
newFromParcel(Parcel p)
|
boolean
|
putBlob(byte[] value, int row, int column)
Copies a byte array into the field at the specified row and column index. |
boolean
|
putDouble(double value, int row, int column)
Puts a double-precision floating point value into the field at the specified row and column index. |
boolean
|
putLong(long value, int row, int column)
Puts a long integer into the field at the specified row and column index. |
boolean
|
putNull(int row, int column)
Puts a null value into the field at the specified row and column index. |
boolean
|
putString(String value, int row, int column)
Copies a string into the field at the specified row and column index. |
boolean
|
setNumColumns(int columnNum)
Sets the number of columns in this window. |
void
|
setStartPosition(int pos)
Sets the start position of this cursor window. |
String
|
toString()
Returns a string representation of the object. |
void
|
writeToParcel(Parcel dest, int flags)
Flatten this object in to a Parcel. |
Protected methods | |
---|---|
void
|
finalize()
Called by the garbage collector on an object when garbage collection determines that there are no more references to the object. |
void
|
onAllReferencesReleased()
Called when the last reference to the object was released by
a call to |
Inherited methods | |
---|---|
From
class
android.database.sqlite.SQLiteClosable
| |
From
class
java.lang.Object
| |
From
interface
java.io.Closeable
| |
From
interface
android.os.Parcelable
| |
From
interface
java.lang.AutoCloseable
|
CursorWindow (String name)
Creates a new empty cursor window and gives it a name.
The cursor initially has no rows or columns. Call setNumColumns(int)
to
set the number of columns before adding any rows to the cursor.
Parameters | |
---|---|
name |
String :
The name of the cursor window, or null if none.
|
CursorWindow (boolean localWindow)
This constructor was deprecated
in API level 15.
There is no longer a distinction between local and remote
cursor windows. Use the CursorWindow(String)
constructor instead.
Creates a new empty cursor window.
The cursor initially has no rows or columns. Call setNumColumns(int)
to
set the number of columns before adding any rows to the cursor.
Parameters | |
---|---|
localWindow |
boolean :
True if this window will be used in this process only,
false if it might be sent to another processes. This argument is ignored. |
boolean allocRow ()
Allocates a new row at the end of this cursor window.
Returns | |
---|---|
boolean |
True if successful, false if the cursor window is out of memory. |
void clear ()
Clears out the existing contents of the window, making it safe to reuse for new data.
The start position (getStartPosition()
), number of rows (getNumRows()
),
and number of columns in the cursor are all reset to zero.
void copyStringToBuffer (int row, int column, CharArrayBuffer buffer)
Copies the text of the field at the specified row and column index into
a CharArrayBuffer
.
The buffer is populated as follows:
FIELD_TYPE_NULL
, then the buffer
is set to an empty string.FIELD_TYPE_STRING
, then the buffer
is set to the contents of the string.FIELD_TYPE_INTEGER
, then the buffer
is set to a string representation of the integer in decimal, obtained by formatting the
value with the printf
family of functions using
format specifier %lld
.FIELD_TYPE_FLOAT
, then the buffer is
set to a string representation of the floating-point value in decimal, obtained by
formatting the value with the printf
family of functions using
format specifier %g
.FIELD_TYPE_BLOB
, then a
SQLiteException
is thrown.Parameters | |
---|---|
row |
int :
The zero-based row index. |
column |
int :
The zero-based column index. |
buffer |
CharArrayBuffer :
The CharArrayBuffer to hold the string. It is automatically
resized if the requested string is larger than the buffer's current capacity.
|
int describeContents ()
Describe the kinds of special objects contained in this Parcelable
instance's marshaled representation. For example, if the object will
include a file descriptor in the output of writeToParcel(Parcel, int)
,
the return value of this method must include the
CONTENTS_FILE_DESCRIPTOR
bit.
Returns | |
---|---|
int |
a bitmask indicating the set of special object types marshaled by this Parcelable object instance. |
byte[] getBlob (int row, int column)
Gets the value of the field at the specified row and column index as a byte array.
The result is determined as follows:
FIELD_TYPE_NULL
, then the result
is null
.FIELD_TYPE_BLOB
, then the result
is the blob value.FIELD_TYPE_STRING
, then the result
is the array of bytes that make up the internal representation of the
string value.FIELD_TYPE_INTEGER
or
FIELD_TYPE_FLOAT
, then a SQLiteException
is thrown.Parameters | |
---|---|
row |
int :
The zero-based row index. |
column |
int :
The zero-based column index. |
Returns | |
---|---|
byte[] |
The value of the field as a byte array. |
double getDouble (int row, int column)
Gets the value of the field at the specified row and column index as a
double
.
The result is determined as follows:
FIELD_TYPE_NULL
, then the result
is 0.0
.FIELD_TYPE_STRING
, then the result
is the value obtained by parsing the string value with strtod
.
FIELD_TYPE_INTEGER
, then the result
is the integer value converted to a double
.FIELD_TYPE_FLOAT
, then the result
is the double
value.FIELD_TYPE_BLOB
, then a
SQLiteException
is thrown.Parameters | |
---|---|
row |
int :
The zero-based row index. |
column |
int :
The zero-based column index. |
Returns | |
---|---|
double |
The value of the field as a double .
|
float getFloat (int row, int column)
Gets the value of the field at the specified row and column index as a
float
.
The result is determined by invoking getDouble(int, int)
and converting the
result to float
.
Parameters | |
---|---|
row |
int :
The zero-based row index. |
column |
int :
The zero-based column index. |
Returns | |
---|---|
float |
The value of the field as an float .
|
int getInt (int row, int column)
Gets the value of the field at the specified row and column index as an
int
.
The result is determined by invoking getLong(int, int)
and converting the
result to int
.
Parameters | |
---|---|
row |
int :
The zero-based row index. |
column |
int :
The zero-based column index. |
Returns | |
---|---|
int |
The value of the field as an int .
|
long getLong (int row, int column)
Gets the value of the field at the specified row and column index as a long
.
The result is determined as follows:
FIELD_TYPE_NULL
, then the result
is 0L
.FIELD_TYPE_STRING
, then the result
is the value obtained by parsing the string value with strtoll
.
FIELD_TYPE_INTEGER
, then the result
is the long
value.FIELD_TYPE_FLOAT
, then the result
is the floating-point value converted to a long
.FIELD_TYPE_BLOB
, then a
SQLiteException
is thrown.Parameters | |
---|---|
row |
int :
The zero-based row index. |
column |
int :
The zero-based column index. |
Returns | |
---|---|
long |
The value of the field as a long .
|
int getNumRows ()
Gets the number of rows in this window.
Returns | |
---|---|
int |
The number of rows in this cursor window. |
short getShort (int row, int column)
Gets the value of the field at the specified row and column index as a
short
.
The result is determined by invoking getLong(int, int)
and converting the
result to short
.
Parameters | |
---|---|
row |
int :
The zero-based row index. |
column |
int :
The zero-based column index. |
Returns | |
---|---|
short |
The value of the field as a short .
|
int getStartPosition ()
Gets the start position of this cursor window.
The start position is the zero-based index of the first row that this window contains
relative to the entire result set of the Cursor
.
Returns | |
---|---|
int |
The zero-based start position. |
String getString (int row, int column)
Gets the value of the field at the specified row and column index as a string.
The result is determined as follows:
FIELD_TYPE_NULL
, then the result
is null
.FIELD_TYPE_STRING
, then the result
is the string value.FIELD_TYPE_INTEGER
, then the result
is a string representation of the integer in decimal, obtained by formatting the
value with the printf
family of functions using
format specifier %lld
.FIELD_TYPE_FLOAT
, then the result
is a string representation of the floating-point value in decimal, obtained by
formatting the value with the printf
family of functions using
format specifier %g
.FIELD_TYPE_BLOB
, then a
SQLiteException
is thrown.Parameters | |
---|---|
row |
int :
The zero-based row index. |
column |
int :
The zero-based column index. |
Returns | |
---|---|
String |
The value of the field as a string. |
int getType (int row, int column)
Returns the type of the field at the specified row and column index.
The returned field types are:
Parameters | |
---|---|
row |
int :
The zero-based row index. |
column |
int :
The zero-based column index. |
Returns | |
---|---|
int |
The field type. |
boolean isBlob (int row, int column)
This method was deprecated
in API level 11.
Use getType(int, int)
instead.
Returns true if the field at the specified row and column index
has type FIELD_TYPE_BLOB
or FIELD_TYPE_NULL
.
Parameters | |
---|---|
row |
int :
The zero-based row index. |
column |
int :
The zero-based column index. |
Returns | |
---|---|
boolean |
True if the field has type FIELD_TYPE_BLOB or
FIELD_TYPE_NULL . |
boolean isFloat (int row, int column)
This method was deprecated
in API level 11.
Use getType(int, int)
instead.
Returns true if the field at the specified row and column index
has type FIELD_TYPE_FLOAT
.
Parameters | |
---|---|
row |
int :
The zero-based row index. |
column |
int :
The zero-based column index. |
Returns | |
---|---|
boolean |
True if the field has type FIELD_TYPE_FLOAT . |
boolean isLong (int row, int column)
This method was deprecated
in API level 11.
Use getType(int, int)
instead.
Returns true if the field at the specified row and column index
has type FIELD_TYPE_INTEGER
.
Parameters | |
---|---|
row |
int :
The zero-based row index. |
column |
int :
The zero-based column index. |
Returns | |
---|---|
boolean |
True if the field has type FIELD_TYPE_INTEGER . |
boolean isNull (int row, int column)
This method was deprecated
in API level 11.
Use getType(int, int)
instead.
Returns true if the field at the specified row and column index
has type FIELD_TYPE_NULL
.
Parameters | |
---|---|
row |
int :
The zero-based row index. |
column |
int :
The zero-based column index. |
Returns | |
---|---|
boolean |
True if the field has type FIELD_TYPE_NULL . |
boolean isString (int row, int column)
This method was deprecated
in API level 11.
Use getType(int, int)
instead.
Returns true if the field at the specified row and column index
has type FIELD_TYPE_STRING
or FIELD_TYPE_NULL
.
Parameters | |
---|---|
row |
int :
The zero-based row index. |
column |
int :
The zero-based column index. |
Returns | |
---|---|
boolean |
True if the field has type FIELD_TYPE_STRING
or FIELD_TYPE_NULL . |
CursorWindow newFromParcel (Parcel p)
Parameters | |
---|---|
p |
Parcel
|
Returns | |
---|---|
CursorWindow |
boolean putBlob (byte[] value, int row, int column)
Copies a byte array into the field at the specified row and column index.
Parameters | |
---|---|
value |
byte :
The value to store. |
row |
int :
The zero-based row index. |
column |
int :
The zero-based column index. |
Returns | |
---|---|
boolean |
True if successful. |
boolean putDouble (double value, int row, int column)
Puts a double-precision floating point value into the field at the specified row and column index.
Parameters | |
---|---|
value |
double :
The value to store. |
row |
int :
The zero-based row index. |
column |
int :
The zero-based column index. |
Returns | |
---|---|
boolean |
True if successful. |
boolean putLong (long value, int row, int column)
Puts a long integer into the field at the specified row and column index.
Parameters | |
---|---|
value |
long :
The value to store. |
row |
int :
The zero-based row index. |
column |
int :
The zero-based column index. |
Returns | |
---|---|
boolean |
True if successful. |
boolean putNull (int row, int column)
Puts a null value into the field at the specified row and column index.
Parameters | |
---|---|
row |
int :
The zero-based row index. |
column |
int :
The zero-based column index. |
Returns | |
---|---|
boolean |
True if successful. |
boolean putString (String value, int row, int column)
Copies a string into the field at the specified row and column index.
Parameters | |
---|---|
value |
String :
The value to store. |
row |
int :
The zero-based row index. |
column |
int :
The zero-based column index. |
Returns | |
---|---|
boolean |
True if successful. |
boolean setNumColumns (int columnNum)
Sets the number of columns in this window.
This method must be called before any rows are added to the window, otherwise it will fail to set the number of columns if it differs from the current number of columns.
Parameters | |
---|---|
columnNum |
int :
The new number of columns. |
Returns | |
---|---|
boolean |
True if successful. |
void setStartPosition (int pos)
Sets the start position of this cursor window.
The start position is the zero-based index of the first row that this window contains
relative to the entire result set of the Cursor
.
Parameters | |
---|---|
pos |
int :
The new zero-based start position.
|
String toString ()
Returns a string representation of the object. In general, the
toString
method returns a string that
"textually represents" this object. The result should
be a concise but informative representation that is easy for a
person to read.
It is recommended that all subclasses override this method.
The toString
method for class Object
returns a string consisting of the name of the class of which the
object is an instance, the at-sign character `@
', and
the unsigned hexadecimal representation of the hash code of the
object. In other words, this method returns a string equal to the
value of:
getClass().getName() + '@' + Integer.toHexString(hashCode())
Returns | |
---|---|
String |
a string representation of the object. |
void writeToParcel (Parcel dest, int flags)
Flatten this object in to a Parcel.
Parameters | |
---|---|
dest |
Parcel :
The Parcel in which the object should be written. |
flags |
int :
Additional flags about how the object should be written.
May be 0 or PARCELABLE_WRITE_RETURN_VALUE .
|
void finalize ()
Called by the garbage collector on an object when garbage collection
determines that there are no more references to the object.
A subclass overrides the finalize
method to dispose of
system resources or to perform other cleanup.
The general contract of finalize
is that it is invoked
if and when the JavaTM virtual
machine has determined that there is no longer any
means by which this object can be accessed by any thread that has
not yet died, except as a result of an action taken by the
finalization of some other object or class which is ready to be
finalized. The finalize
method may take any action, including
making this object available again to other threads; the usual purpose
of finalize
, however, is to perform cleanup actions before
the object is irrevocably discarded. For example, the finalize method
for an object that represents an input/output connection might perform
explicit I/O transactions to break the connection before the object is
permanently discarded.
The finalize
method of class Object
performs no
special action; it simply returns normally. Subclasses of
Object
may override this definition.
The Java programming language does not guarantee which thread will
invoke the finalize
method for any given object. It is
guaranteed, however, that the thread that invokes finalize will not
be holding any user-visible synchronization locks when finalize is
invoked. If an uncaught exception is thrown by the finalize method,
the exception is ignored and finalization of that object terminates.
After the finalize
method has been invoked for an object, no
further action is taken until the Java virtual machine has again
determined that there is no longer any means by which this object can
be accessed by any thread that has not yet died, including possible
actions by other objects or classes which are ready to be finalized,
at which point the object may be discarded.
The finalize
method is never invoked more than once by a Java
virtual machine for any given object.
Any exception thrown by the finalize
method causes
the finalization of this object to be halted, but is otherwise
ignored.
Throws | |
---|---|
Throwable |
void onAllReferencesReleased ()
Called when the last reference to the object was released by
a call to releaseReference()
or close()
.