getString

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

The result at the given index converted to a String

Return

a String value.

Parameters

index

the index of the required value.


expect open override fun getString(key: String): String?(source)

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

Return

The String object.

Parameters

key

The select result key.

actual open override fun getString(index: Int): String?(source)

Gets value at the given index as a String. Returns null if the value doesn't exist, or its value is not a String.

Return

the String or null.

Parameters

index

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


actual open override fun getString(key: String): String?(source)

Gets a property's value as a String. Returns null if the value doesn't exist, or its value is not a String.

Return

the String or null.

Parameters

key

the key

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