# Print output for @column tags ?> CursorJoiner.Result - Android SDK | Android Developers

Most visited

Recently visited

CursorJoiner.Result

public static final enum CursorJoiner.Result
extends Enum<CursorJoiner.Result>

java.lang.Object
   ↳ java.lang.Enum<android.database.CursorJoiner.Result>
     ↳ android.database.CursorJoiner.Result


The result of a call to next().

Summary

Enum values

CursorJoiner.Result  BOTH

The rows pointed to by both cursors are the same 

CursorJoiner.Result  LEFT

The row currently pointed to by the right cursor is unique 

CursorJoiner.Result  RIGHT

The row currently pointed to by the left cursor is unique 

Public methods

static CursorJoiner.Result valueOf(String name)
static final Result[] values()

Inherited methods

Enum values

BOTH

public static final CursorJoiner.Result BOTH

The rows pointed to by both cursors are the same

LEFT

public static final CursorJoiner.Result LEFT

The row currently pointed to by the right cursor is unique

public static final CursorJoiner.Result RIGHT

The row currently pointed to by the left cursor is unique

Public methods

valueOf

public static CursorJoiner.Result valueOf (String name)

Parameters
name String

Returns
CursorJoiner.Result

values

public static final Result[] values ()

Returns
Result[]