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.