//selekt-java/com.bloomberg.selekt/ICursor
ICursor
[jvm]\ interface ICursor : Closeable
Properties
| Name | Summary |
|---|---|
| columnCount | [jvm] abstract val columnCount: Int |
| count | [jvm] abstract val count: Int |
Functions
| Name | Summary |
|---|---|
| close | [jvm] abstract override fun close() |
| columnIndex | [jvm] abstract fun columnIndex(name: String): Int |
| columnName | [jvm] abstract fun columnName(index: Int): String |
| columnNames | [jvm] abstract fun columnNames(): Array<out String> |
| getBlob | [jvm] abstract fun getBlob(index: Int): ByteArray? |
| getDouble | [jvm] abstract fun getDouble(index: Int): Double |
| getFloat | [jvm] open fun getFloat(index: Int): Float |
| getInt | [jvm] abstract fun getInt(index: Int): Int |
| getLong | [jvm] abstract fun getLong(index: Int): Long |
| getShort | [jvm] open fun getShort(index: Int): Short |
| getString | [jvm] abstract fun getString(index: Int): String? |
| isAfterLast | [jvm] abstract fun isAfterLast(): Boolean |
| isBeforeFirst | [jvm] abstract fun isBeforeFirst(): Boolean |
| isClosed | [jvm] abstract fun isClosed(): Boolean |
| isFirst | [jvm] abstract fun isFirst(): Boolean |
| isLast | [jvm] abstract fun isLast(): Boolean |
| isNull | [jvm] abstract fun isNull(index: Int): Boolean |
| move | [jvm] abstract fun move(offset: Int): Boolean |
| moveToFirst | [jvm] abstract fun moveToFirst(): Boolean |
| moveToLast | [jvm] abstract fun moveToLast(): Boolean |
| moveToNext | [jvm] abstract fun moveToNext(): Boolean |
| moveToPosition | [jvm] abstract fun moveToPosition(position: Int): Boolean |
| moveToPrevious | [jvm] abstract fun moveToPrevious(): Boolean |
| position | [jvm] abstract fun position(): Int |
| type | [jvm] abstract fun type(index: Int): ColumnType |