by

@JvmName(name = "listByValue")
infix fun <T : Any> DslProperty<in List<T>>.by(value: T)

Sets this List property to a single value.

strings by "Single string"

@JvmName(name = "listByValueProvider")
infix fun <T : Any> DslProperty<in List<T>>.by(value: Provider<T>)

Sets this List property to a provider of a single value.

strings by provider("Single string")

@JvmName(name = "setByValue")
infix fun <T : Any> DslProperty<in Set<T>>.by(value: T)

Sets this Set property to a single value.

strings by "Single string"

@JvmName(name = "setByValueProvider")
infix fun <T : Any> DslProperty<in Set<T>>.by(value: Provider<T>)

Sets this Set property to a provider of a single value.

strings by provider("Single string")