getValue

actual open override fun getValue(index: Int): Any?(source)
actual open override fun getValue(key: String): Any?(source)
expect open override fun getValue(index: Int): Any?(source)

The result value at the given index.

Return

the value.

Parameters

index

the index of the required value.


expect open override fun getValue(key: String): Any?(source)

The result value for the given key as an Object Returns null if the key doesn't exist.

Return

The Object.

Parameters

key

The select result key.

actual open override fun getValue(index: Int): Any?(source)

Gets value at the given index as an object. The object types are Blob, Array, Dictionary, Number, or String based on the underlying data type; or null if the value is null.

Return

the Object or null.

Parameters

index

the index. This value must not exceed the bounds of the array.


actual open override fun getValue(key: String): Any?(source)

Gets a property's value as an object. The object types are Blob, Array, Dictionary, Number, or String based on the underlying data type; or null if the property value is null or the property doesn't exist.

Return

the object value or null.

Parameters

key

the key.

actual open override fun getValue(index: Int): Any?(source)
actual open override fun getValue(key: String): Any?(source)