CursorMapper
public abstract class CursorMapper
Abstract class used to convert the current Cursor row to a single object.
Summary
Public constructors |
|---|
Protected methods |
|
|---|---|
abstract Object |
A subclass should implement this method to create a single object using binding information. |
abstract void |
bindColumns(Cursor cursor)Called once when the associated |
Public constructors
Public methods
Protected methods
bind
protected abstract Object bind(Cursor cursor)
A subclass should implement this method to create a single object using binding information. This method is not intended to be called outside of CursorMapper.
bindColumns
protected abstract void bindColumns(Cursor cursor)
Called once when the associated Cursor is changed. A subclass should bind column indexes to column names in this method. This method is not intended to be called outside of CursorMapper.