StringListValue

@Immutable
data class StringListValue(val value: Value) : HoldsValue

Defines a list of String primitive that can accommodate a list of String.

Parameters

value

a value representing a string.

Constructors

Link copied to clipboard
fun StringListValue(vararg value: String)

Create a StringListValue that contains string value.

Link copied to clipboard

Create a StringListValue that contains string value.

Link copied to clipboard
fun StringListValue(expression: Expression)

Construct the primitive with Mapbox Expression.

Link copied to clipboard

Types

Link copied to clipboard
object Companion

StringValue's companion object.

Functions

Link copied to clipboard
@RestrictTo(value = [RestrictTo.Scope.LIBRARY_GROUP])
open override fun isNotInitial(): Boolean

True if the this value is not INITIAL

Properties

Link copied to clipboard

The list of String represented by value or null if the stored Value is not a list of String.

Link copied to clipboard
open override val value: Value