W3cubDocs

/Kotlin

ReadOnlyProperty

Platform and version requirements: JVM (1.0), JS (1.0), Native (1.0)
interface ReadOnlyProperty<in R, out T>

Base interface that can be used for implementing property delegates of read-only properties.

This is provided only for convenience; you don't have to extend this interface as long as your property delegate has methods with the same signatures.

Parameters

R - the type of object which owns the delegated property.

T - the type of the property value.

Functions

Platform and version requirements: JVM (1.0), JS (1.0), Native (1.0)

getValue

Returns the value of the property for the given object.

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

© 2010–2019 JetBrains s.r.o.
Licensed under the Apache License, Version 2.0.
https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.properties/-read-only-property/index.html