Accessor

interface Accessor<out V>

Represents a property accessor, which is a get or set method declared alongside the property. See the Kotlin language documentation for more information.

Parameters

V

the type of the property, which it is an accessor of.

Properties

property
Link copied to clipboard
abstract val property: KProperty<V>

The property which this accessor is originated from.

Inheritors

Getter
Link copied to clipboard
Setter
Link copied to clipboard