CursorMapper

public abstract class CursorMapper


Abstract class used to convert the current Cursor row to a single object.

Summary

Public constructors

Public methods

Object
convert(Cursor cursor)

Convert a Cursor at its current position to an Object.

Protected methods

abstract Object
bind(Cursor cursor)

A subclass should implement this method to create a single object using binding information.

abstract void

Called once when the associated Cursor is changed.

Public constructors

CursorMapper

Added in 1.1.0
public CursorMapper()

Public methods

convert

Added in 1.1.0
public Object convert(Cursor cursor)

Convert a Cursor at its current position to an Object.

Protected methods

bind

Added in 1.1.0
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

Added in 1.1.0
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.