Accessor
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.
Parameters
R
- the type of the property, which it is an accessor of.
Properties
property | abstract val property: KProperty<R> The property which this accessor is originated from. |
Inherited Functions
equals | open operator fun equals(other: Any?): Boolean Indicates whether some other object is "equal to" this one. Implementations must fulfil the following requirements: |
hashCode | open fun hashCode(): Int Returns a hash code value for the object. The general contract of hashCode is: |
toString | open fun toString(): String Returns a string representation of the object. |
Inheritors
Getter | interface Getter<out R> : Accessor<R>, KFunction<R> Getter of the property is a get method declared alongside the property. |
Setter | interface Setter<R> : Accessor<R>, KFunction<Unit> Setter of the property is a set method declared alongside the property. |