ArrayValue

Types

Link copied to clipboard
data class ArrayValues(val value: List<ArrayValue?>) : ArrayValue

An array of arrays. Can contain null values.

Link copied to clipboard
data class BooleanValues(val value: List<Boolean?>) : ArrayValue

An array of Boolean values. Can contain null values.

Link copied to clipboard
data class DoubleValues(val value: List<Double?>) : ArrayValue

An array of floating-point numbers. Can contain null values.

Link copied to clipboard
data class LongValues(val value: List<Long?>) : ArrayValue

An array of integers. Can contain null values.

Link copied to clipboard
Link copied to clipboard
data class StringValues(val value: List<String?>) : ArrayValue

An array of strings. Can contain null values.

Functions

Link copied to clipboard

Casts this ArrayValue as a ArrayValues and retrieves its kotlin.collections.List value. Throws an exception if the ArrayValue is not a ArrayValues.

Link copied to clipboard

Casts this ArrayValue as a ArrayValues and retrieves its kotlin.collections.List value. Returns null if the ArrayValue is not a ArrayValues.

Link copied to clipboard

Casts this ArrayValue as a BooleanValues and retrieves its kotlin.collections.List value. Throws an exception if the ArrayValue is not a BooleanValues.

Link copied to clipboard

Casts this ArrayValue as a BooleanValues and retrieves its kotlin.collections.List value. Returns null if the ArrayValue is not a BooleanValues.

Link copied to clipboard

Casts this ArrayValue as a DoubleValues and retrieves its kotlin.collections.List value. Throws an exception if the ArrayValue is not a DoubleValues.

Link copied to clipboard

Casts this ArrayValue as a DoubleValues and retrieves its kotlin.collections.List value. Returns null if the ArrayValue is not a DoubleValues.

Link copied to clipboard

Casts this ArrayValue as a LongValues and retrieves its kotlin.collections.List value. Throws an exception if the ArrayValue is not a LongValues.

Link copied to clipboard

Casts this ArrayValue as a LongValues and retrieves its kotlin.collections.List value. Returns null if the ArrayValue is not a LongValues.

Link copied to clipboard

Casts this ArrayValue as a StringValues and retrieves its kotlin.collections.List value. Throws an exception if the ArrayValue is not a StringValues.

Link copied to clipboard

Casts this ArrayValue as a StringValues and retrieves its kotlin.collections.List value. Returns null if the ArrayValue is not a StringValues.