Stay organized with collections
Save and categorize content based on your preferences.
Result
class Result
The result of a call to next().
Summary
Enum values |
The rows pointed to by both cursors are the same
|
The row currently pointed to by the right cursor is unique
|
The row currently pointed to by the left cursor is unique
|
Enum values
LEFT
enum val LEFT : CursorJoiner.Result
The row currently pointed to by the right cursor is unique
RIGHT
enum val RIGHT : CursorJoiner.Result
The row currently pointed to by the left cursor is unique
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 2025-02-10 UTC.
[[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Missing the information I need","missingTheInformationINeed","thumb-down"],["Too complicated / too many steps","tooComplicatedTooManySteps","thumb-down"],["Out of date","outOfDate","thumb-down"],["Samples / code issue","samplesCodeIssue","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2025-02-10 UTC."],[],[],null,["# CursorJoiner.Result\n\nAdded in [API level 1](https://developer.android.com/guide/topics/manifest/uses-sdk-element.html#ApiLevels)\n\nResult\n======\n\n*** ** * ** ***\n\nKotlin \\|[Java](/reference/android/database/CursorJoiner.Result \"View this page in Java\") \n\n```\nclass Result\n```\n\n|---|---|-------------------------------------------|\n| [kotlin.Any](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-any/index.html) |||\n| ↳ | [kotlin.Enum](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-enum/index.html)\\\u003c[android.database.CursorJoiner.Result](#)\\\u003e ||\n| | ↳ | [android.database.CursorJoiner.Result](#) |\n\n|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|\n| Known Direct Subclasses [CursorJoiner.Result.BOTH](#ENUM_VALUE:BOTH), [CursorJoiner.Result.LEFT](#ENUM_VALUE:LEFT), [CursorJoiner.Result.RIGHT](#ENUM_VALUE:RIGHT) |------------------------------------------------|------------------------------------------------------------| | [CursorJoiner.Result.BOTH](#ENUM_VALUE:BOTH) | The rows pointed to by both cursors are the same | | [CursorJoiner.Result.LEFT](#ENUM_VALUE:LEFT) | The row currently pointed to by the right cursor is unique | | [CursorJoiner.Result.RIGHT](#ENUM_VALUE:RIGHT) | The row currently pointed to by the left cursor is unique | |\n\nThe result of a call to next().\n\nSummary\n-------\n\n| Enum values ||\n|--------------------------------------------------------------------------------------|---|\n| [BOTH](#ENUM_VALUE:BOTH) The rows pointed to by both cursors are the same |\n| [LEFT](#ENUM_VALUE:LEFT) The row currently pointed to by the right cursor is unique |\n| [RIGHT](#ENUM_VALUE:RIGHT) The row currently pointed to by the left cursor is unique |\n\nEnum values\n-----------\n\n### BOTH\n\nAdded in [API level 1](https://developer.android.com/guide/topics/manifest/uses-sdk-element.html#ApiLevels) \n\n```\nenum val BOTH : CursorJoiner.Result\n```\n\nThe rows pointed to by both cursors are the same \n\n### LEFT\n\nAdded in [API level 1](https://developer.android.com/guide/topics/manifest/uses-sdk-element.html#ApiLevels) \n\n```\nenum val LEFT : CursorJoiner.Result\n```\n\nThe row currently pointed to by the right cursor is unique \n\n### RIGHT\n\nAdded in [API level 1](https://developer.android.com/guide/topics/manifest/uses-sdk-element.html#ApiLevels) \n\n```\nenum val RIGHT : CursorJoiner.Result\n```\n\nThe row currently pointed to by the left cursor is unique"]]