English | 简体中文

api-docs / org.ktorm.database / CachedRowSet / getObject

getObject

open fun getObject(columnIndex: Int): Any? (source code)

open fun getObject(columnLabel: String): Any? (source code)

open fun getObject(
    columnIndex: Int,
    map: Map<String, Class<*>>
): Any?
(source code)

open fun getObject(
    columnLabel: String,
    map: Map<String, Class<*>>
): Any?
(source code)

open fun <T : Any> getObject(
    columnIndex: Int,
    type: Class<T>
): T?
(source code)

open fun <T : Any> getObject(
    columnLabel: String,
    type: Class<T>
): T?
(source code)