CursorJoiner(ICursor, String[], ICursor, String[]) Constructor

Definition

Initializes the CursorJoiner and resets the cursors to the first row.

[Android.Runtime.Register(".ctor", "(Landroid/database/Cursor;[Ljava/lang/String;Landroid/database/Cursor;[Ljava/lang/String;)V", "")]
public CursorJoiner (Android.Database.ICursor? cursorLeft, string[]? columnNamesLeft, Android.Database.ICursor? cursorRight, string[]? columnNamesRight);
[<Android.Runtime.Register(".ctor", "(Landroid/database/Cursor;[Ljava/lang/String;Landroid/database/Cursor;[Ljava/lang/String;)V", "")>]
new Android.Database.CursorJoiner : Android.Database.ICursor * string[] * Android.Database.ICursor * string[] -> Android.Database.CursorJoiner

Parameters

cursorLeft
ICursor

The left cursor to compare

columnNamesLeft
String[]

The column names to compare from the left cursor

cursorRight
ICursor

The right cursor to compare

columnNamesRight
String[]

The column names to compare from the right cursor

Attributes

Remarks

Initializes the CursorJoiner and resets the cursors to the first row. The left and right column name arrays must have the same number of columns.

Java documentation for android.database.CursorJoiner.CursorJoiner(android.database.Cursor, java.lang.String[], android.database.Cursor, java.lang.String[]).

Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License.

Applies to