Added in API level 1
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
Added in API level 1
public static final CursorJoiner.Result BOTH
The rows pointed to by both cursors are the same
LEFT
Added in API level 1
public static final CursorJoiner.Result LEFT
The row currently pointed to by the right cursor is unique
RIGHT
Added in API level 1
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 |
|
Content and code samples on this page are subject to the licenses described in the Content License. Java is a registered trademark of Oracle and/or its affiliates.
Last updated 2020-09-30 UTC.