SingleParamDelegate

class SingleParamDelegate<T>(paramName: String, val mapping: Map<T, String?>? = null) : ParameterDelegate<T>

Constructors

Link copied to clipboard
fun <T> SingleParamDelegate(paramName: String, mapping: Map<T, String?>? = null)

Functions

Link copied to clipboard
open operator fun getValue(thisRef: Parametrized, property: KProperty<*>): T?
Link copied to clipboard
open operator fun setValue(    thisRef: Parametrized,     property: KProperty<*>,     value: T?)

Properties

Link copied to clipboard
val mapping: Map<T, String?>? = null
Link copied to clipboard
val paramName: String