getValue

Property delegate for ConfigurableFileCollection instances.

Example: val aFileCollection by project.files()


inline operator fun <T : Any> ExtensionContainer.getValue(thisRef: Any?, property: KProperty<*>): T(source)

Delegated property getter that locates extensions.


operator fun <T> ExistingDomainObjectDelegate<out T>.getValue(receiver: Any?, property: KProperty<*>): T(source)

Gets the delegate value.


inline operator fun <T : Any, U : T> NamedDomainObjectProvider<out T>.getValue(thisRef: Any?, property: KProperty<*>): U(source)

Allows a NamedDomainObjectProvider to be used as a property delegate.

See also

NamedDomainObjectProvider.get

operator fun <T> Property<T>.getValue(receiver: Any?, property: KProperty<*>): T(source)

Property delegate for Property instances.

Example: val someProperty by somePropertyState