library / org.akop.kotx.ext.database / android.database.Cursor / getNullableFloat

getNullableFloat

fun Cursor.getNullableFloat(columnIndex: Int, defaultValue: Float? = null): Float?

Same as Cursor.getFloat, but returns defaultValue when the column value is NULL.

Parameters

columnIndex - zero-based index of the column.

Return
Contents of the column, or defaultValue if Cursor.isNull returns true for the specified column.