ConfigUtils

Functions

Link copied to clipboard
fun <T> createVariable(property: KMutableProperty0<T>): BasicVariable<T>

Creates a config variable from the provided kotlin property.

fun <T> createVariable(field: Field, parent: Any?): BasicVariable<T>

Creates a config variable from the provided java field and parent.

fun <T> createVariable(getter: () -> T, setter: (T) -> Unit): BasicVariable<T>

Convenience method for creating custom config variables.

fun <T, V> createVariable(property: KMutableProperty1<T, V>, parent: T): BasicVariable<V>

Creates a config variable from the provided kotlin property and parent.