W3cubDocs

/Kotlin

Getter

Platform and version requirements: JVM (1.0), JS (1.1)
interface Getter<out R> : Accessor<R>, KFunction<R>

Getter of the property is a get method declared alongside the property.

Inheritors

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

Getter

Getter of the property is a get method declared alongside the property.

interface Getter<out R> : Getter<R>, () -> R
Platform and version requirements: JVM (1.0), JS (1.0)

Getter

Getter of the property is a get method declared alongside the property.

interface Getter<T, out R> : Getter<R>, (T) -> R
Platform and version requirements: JVM (1.0), JS (1.0)

Getter

Getter of the property is a get method declared alongside the property.

interface Getter<D, E, out R> : Getter<R>, (D, E) -> R

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