Cursor

open class Cursor

extracts category ids to be deleted from DB

Author

"Martin Krischik" «krischik@users.sourceforge.net»

Since

1.0

Constructors

Link copied to clipboard
constructor(delegate: Cursor)
create a statement from an existing one.

Properties

Link copied to clipboard
val delegate: Cursor
What is OO good for if every other class can't be extended because the constructor is protected and the class must be created using a factory.
Link copied to clipboard
private val TAG: String
Logging tag

Functions

Link copied to clipboard
protected open fun clone(): Any
Link copied to clipboard
open fun close()
Closes the Cursor, releasing all of its resources and making it completely invalid.
Link copied to clipboard
open fun equals(obj: Any): Boolean
Link copied to clipboard
protected open fun finalize()
Link copied to clipboard
open fun getBlob(columnIndex: Int): Array<Byte>
Returns the value of the requested column as a byte array.
Link copied to clipboard
open fun getBlobAsString(columnIndex: Int): String
Get the Blob a string.
Link copied to clipboard
open fun getBoolean(columnIndex: Int): Boolean
Returns the value of the requested column as a Boolean.
Link copied to clipboard
open fun getByte(columnIndex: Int): Byte
Returns the value of the requested column as a integer.
Link copied to clipboard
fun getClass(): Class<out Any>
Link copied to clipboard
open fun getCount(): Int
Returns the numbers of rows in the cursor.
Link copied to clipboard
open fun getDate(columnIndex: Int): Date
Returns the value of the requested column as a date.
Link copied to clipboard
open fun getDouble(columnIndex: Int): Double
Returns the value of the requested column as a Double.
Link copied to clipboard
open fun getFile(columnIndex: Int): File
Get file for file bound data.
Link copied to clipboard
open fun getFloat(columnIndex: Int): Float
Returns the value of the requested column as a Double.
Link copied to clipboard
open fun getInt(columnIndex: Int): Integer
Returns the value of the requested column as a integer.
Link copied to clipboard
open fun getLong(columnIndex: Int): Long
Returns the value of the requested column as a long integer.
Link copied to clipboard
open fun getString(columnIndex: Int): String
Returns the value of the requested column as a String.
Link copied to clipboard
open fun getURI(columnIndex: Int): URI
Returns the value of the requested column as a URL.
Link copied to clipboard
open fun getUri(columnIndex: Int): Uri
Returns the value of the requested column as a URL.
Link copied to clipboard
open fun getURL(columnIndex: Int): URL
Returns the value of the requested column as a URL.
Link copied to clipboard
open fun hashCode(): Int
Link copied to clipboard
open fun isClosed(): Boolean
return true if the cursor is closed
Link copied to clipboard
open fun moveToFirst(): Boolean
Move the cursor to the first row.
Link copied to clipboard
open fun moveToNext(): Boolean
Move the cursor to the next row.
Link copied to clipboard
fun notify()
Link copied to clipboard
fun notifyAll()
Link copied to clipboard
open fun toString(): String
create debug string
Link copied to clipboard
fun wait()