corda / net.corda.core.utilities / PropertyDelegate

PropertyDelegate

interface PropertyDelegate<out T>

Simple interface encapsulating the implicit Kotlin contract for immutable property delegates.

Functions

getValue

Invoked as part of Kotlin delegated properties construct.

abstract operator fun getValue(thisRef: Any?, property: KProperty<*>): T

Inheritors

VariablePropertyDelegate

Simple interface encapsulating the implicit Kotlin contract for mutable property delegates.

interface VariablePropertyDelegate<T> : PropertyDelegate<T>