interface Accessor<out R>
Represents a property accessor, which is a get
or set
method declared alongside the property. See the Kotlin language documentation for more information.
R
- the type of the property, which it is an accessor of.
abstract val property: KProperty<R> The property which this accessor is originated from. |
open operator fun equals(other: Any?): Boolean Indicates whether some other object is "equal to" this one. Implementations must fulfil the following requirements: | |
open fun hashCode(): Int Returns a hash code value for the object. The general contract of hashCode is: | |
open fun toString(): String Returns a string representation of the object. |
interface Getter<out R> : Accessor<R>, KFunction<R> Getter of the property is a | |
interface Setter<R> : Accessor<R>, KFunction<Unit> Setter of the property is a |
© 2010–2018 JetBrains s.r.o.
Licensed under the Apache License, Version 2.0.
https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.reflect/-k-property/-accessor/index.html