Parameter

class Parameter<R : Any>(    val parameterValues: MutableMap<String, Any>,     val parameterTypes: ObservableHashmap<String, String>,     val customName: String? = null,     initialValue: R? = null) : ReadWriteProperty<Any, R> (source)

A class representing a parameter that supports getting and setting typed values with automatic type tracking.

Parameters

R

The type of the parameter value, which must be a non-nullable type.

Constructors

Link copied to clipboard
constructor(    parameterValues: MutableMap<String, Any>,     parameterTypes: ObservableHashmap<String, String>,     customName: String? = null,     initialValue: R? = null)

Initializes the parameter with an optional custom name and initial value. If an initial value is provided, it is assigned to the parameter using the customName if provided, or "value" by default.

Properties

Link copied to clipboard
val customName: String? = null

A custom name for the parameter. If null, the property name will be used.

Link copied to clipboard

An observable map that tracks parameter names and their corresponding types.

Link copied to clipboard

A mutable map storing parameter names and their assigned values.

Functions

Link copied to clipboard
open operator override fun getValue(thisRef: Any, property: KProperty<*>): R
Link copied to clipboard
fun setValue(name: String, value: R)

Sets the given value for the specified parameter name and determines its type.

open operator override fun setValue(thisRef: Any, property: KProperty<*>, value: R)