BooleanValues

data class BooleanValues(val value: List<Boolean>) : ArrayValue

An array of Boolean values.

Constructors

Link copied to clipboard
constructor(value: List<Boolean>)

Properties

Link copied to clipboard

Inherited functions

Link copied to clipboard

Casts this ArrayValue as a ArrayValues and retrieves its 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 List value. Returns null if the ArrayValue is not a ArrayValues.

Link copied to clipboard

Casts this ArrayValue as a BooleanValues and retrieves its 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 List value. Returns null if the ArrayValue is not a BooleanValues.

Link copied to clipboard

Casts this ArrayValue as a DoubleValues and retrieves its 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 List value. Returns null if the ArrayValue is not a DoubleValues.

Link copied to clipboard

Casts this ArrayValue as a LongValues and retrieves its 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 List value. Returns null if the ArrayValue is not a LongValues.

Link copied to clipboard

Casts this ArrayValue as a StringValues and retrieves its 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 List value. Returns null if the ArrayValue is not a StringValues.