Example usage for Java android.database CursorWindow fields, constructors, methods, implement or subclass
The text is from its open source code.
void | acquireReference() Acquires a reference to the object. |
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 | freeLastRow() Frees the last row in this cursor window. |
int | getNumRows() Gets the number of rows in this window. |
boolean | isBlob(int row, int column) Returns true if the field at the specified row and column index has type Cursor#FIELD_TYPE_BLOB or Cursor#FIELD_TYPE_NULL . |
boolean | isFloat(int row, int column) Returns true if the field at the specified row and column index has type Cursor#FIELD_TYPE_FLOAT . |
boolean | isLong(int row, int column) Returns true if the field at the specified row and column index has type Cursor#FIELD_TYPE_INTEGER . |
boolean | isNull(int row, int column) Returns true if the field at the specified row and column index has type Cursor#FIELD_TYPE_NULL . |
boolean | isString(int row, int column) Returns true if the field at the specified row and column index has type Cursor#FIELD_TYPE_STRING or Cursor#FIELD_TYPE_NULL . |
boolean | putBlob(byte[] value, int row, int column) Copies a byte array 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. |
void | releaseReference() Releases a reference to the object, closing the object if the last reference was released. |
boolean | setNumColumns(int columnNum) Sets the number of columns in this window. |
void | setStartPosition(int pos) Sets the start position of this cursor window. |