Value

open fun Value(d: Double)

Create a value from a double.

Parameters

d

double to wrap

open fun Value(l: Long)

Create a value from a long.

Parameters

l

long to wrap

open fun Value(b: Boolean)

Create a value from a boolean.

Parameters

b

boolean to wrap

open fun Value(@NonNull str: String)

Create a value from a string.

Parameters

str

string to wrap

open fun Value(@NonNull array: List<Value>)

Create a value from an list.

Parameters

array

list to wrap

open fun Value(@NonNull map: HashMap<String, Value>)

Create a value from a map.

Parameters

map

map to wrap