Added in API level 1
    Result
class Result
| kotlin.Any | ||
| ↳ | kotlin.Enum<android.database.CursorJoiner.Result> | |
| ↳ | android.database.CursorJoiner.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
BOTH
Added in API level 1
      enum val BOTH : CursorJoiner.Result
The rows pointed to by both cursors are the same
LEFT
Added in API level 1
      enum val LEFT : CursorJoiner.Result
The row currently pointed to by the right cursor is unique
RIGHT
Added in API level 1
      enum val RIGHT : CursorJoiner.Result
The row currently pointed to by the left cursor is unique