Android.Database.MatrixCursor Members

The members of Android.Database.MatrixCursor are listed below.

See Also: Inherited members from Android.Database.AbstractCursor

Public Constructors

Constructs a new cursor.
Constructs a new cursor with the given initial capacity.

Protected Constructors

A constructor used when creating managed representations of JNI objects; called by the runtime.

Public Properties

[read-only]
override
Countint. Returns the numbers of rows in the cursor.

Protected Properties

[read-only]
override
ThresholdClassIntPtr. This API supports the Mono for Android infrastructure and is not intended to be used directly from your code.
[read-only]
override
ThresholdTypeType. This API supports the Mono for Android infrastructure and is not intended to be used directly from your code.

Public Methods

AddRow(Java.Lang.IIterable)
Documentation for this section has not yet been entered.
AddRow(Java.Lang.Object[])
Adds a new row to the end with the given column values.
override
GetColumnNames() : string[]
Returns a string array holding the names of all of the columns in the result set in the order in which they were listed in the result.
override
GetDouble(int) : double
Returns the value of the requested column as a double.
override
GetFloat(int) : float
Returns the value of the requested column as a float.
override
GetInt(int) : int
Returns the value of the requested column as an int.
override
GetLong(int) : long
Returns the value of the requested column as a long.
override
GetShort(int) : short
Returns the value of the requested column as a short.
override
GetString(int) : string
Returns the value of the requested column as a String.
override
IsNull(int) : bool
Returns true if the value in the indicated column is null.
NewRow() : MatrixCursor.RowBuilder
Adds a new row to the end and returns a builder for that row.