Stay organized with collections Save and categorize content based on your preferences.

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

public CursorMapper()

Public methods

convert

public Object convert(Cursor cursor)

Convert a Cursor at its current position to an Object.

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.