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
RIGHT
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 and OpenJDK are trademarks or registered trademarks of Oracle and/or its affiliates.
Last updated 2024-04-11 UTC.