to top
Android APIs
public final class

CursorJoiner

extends Object
implements Iterable<T> Iterator<E>
java.lang.Object
   ↳ android.database.CursorJoiner

Class Overview

Does a join on two cursors using the specified columns. The cursors must already be sorted on each of the specified columns in ascending order. This joiner only supports the case where the tuple of key column values is unique.

Typical usage:

 CursorJoiner joiner = new CursorJoiner(cursorA, keyColumnsofA, cursorB, keyColumnsofB);
 for (CursorJointer.Result joinerResult : joiner) {
     switch (joinerResult) {
         case LEFT:
             // handle case where a row in cursorA is unique
             break;
         case RIGHT:
             // handle case where a row in cursorB is unique
             break;
         case BOTH:
             // handle case where a row with the same key is in both cursors
             break;
     }
 }
 

Summary

Nested Classes
enum CursorJoiner.Result The result of a call to next(). 
Public Constructors
CursorJoiner(Cursor cursorLeft, String[] columnNamesLeft, Cursor cursorRight, String[] columnNamesRight)
Initializes the CursorJoiner and resets the cursors to the first row.
Public Methods
boolean hasNext()
Returns whether or not there are more rows to compare using next().
Iterator<CursorJoiner.Result> iterator()
Returns an Iterator for the elements in this object.
CursorJoiner.Result next()
Returns the comparison result of the next row from each cursor.
void remove()
Removes the last object returned by next from the collection.
[Expand]
Inherited Methods
From class java.lang.Object
From interface java.lang.Iterable
From interface java.util.Iterator

Public Constructors

public CursorJoiner (Cursor cursorLeft, String[] columnNamesLeft, Cursor cursorRight, String[] columnNamesRight)

Added in API level 1

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.

Parameters
cursorLeft The left cursor to compare
columnNamesLeft The column names to compare from the left cursor
cursorRight The right cursor to compare
columnNamesRight The column names to compare from the right cursor

Public Methods

public boolean hasNext ()

Added in API level 1

Returns whether or not there are more rows to compare using next().

Returns
  • true if there are more rows to compare

public Iterator<CursorJoiner.Result> iterator ()

Added in API level 1

Returns an Iterator for the elements in this object.

Returns
  • An Iterator instance.

public CursorJoiner.Result next ()

Added in API level 1

Returns the comparison result of the next row from each cursor. If one cursor has no more rows but the other does then subsequent calls to this will indicate that the remaining rows are unique.

The caller must check that hasNext() returns true before calling this.

Once next() has been called the cursors specified in the result of the call to next() are guaranteed to point to the row that was indicated. Reading values from the cursor that was not indicated in the call to next() will result in undefined behavior.

Returns
  • LEFT, if the row pointed to by the left cursor is unique, RIGHT if the row pointed to by the right cursor is unique, BOTH if the rows in both cursors are the same.

public void remove ()

Added in API level 1

Removes the last object returned by next from the collection. This method can only be called once between each call to next.