Added in API level 1
    CursorToStringConverter
interface CursorToStringConverter
| android.widget.SimpleCursorAdapter.CursorToStringConverter | 
This class can be used by external clients of SimpleCursorAdapter to define how the Cursor should be converted to a String.
Summary
| Public methods | |
|---|---|
| abstract CharSequence! | convertToString(cursor: Cursor!)Returns a CharSequence representing the specified Cursor. | 
Public methods
convertToString
Added in API level 1
      abstract fun convertToString(cursor: Cursor!): CharSequence!
Returns a CharSequence representing the specified Cursor.
| Parameters | |
|---|---|
| cursor | Cursor!: the cursor for which a CharSequence representation is requested | 
| Return | |
|---|---|
| CharSequence! | a non-null CharSequence representing the cursor | 
