ConfigDelegate

class ConfigDelegate<T : Any>(configClass: KClass<T>, file: File, saveAfterLoad: Boolean, defaultCallback: () -> T?)

See also

Constructors

ConfigDelegate
Link copied to clipboard
fun <T : Any> ConfigDelegate(configClass: KClass<T>, file: File, saveAfterLoad: Boolean, defaultCallback: () -> T?)

Functions

getValue
Link copied to clipboard
operator fun getValue(thisRef: Any?, property: KProperty<*>): T
reload
Link copied to clipboard
fun reload()
Loads the current state of the config on disk to the config object.
save
Link copied to clipboard
fun save()
Saves the config object in its current state to disk.
setValue
Link copied to clipboard
operator fun setValue(thisRef: Any?, property: KProperty<*>, config: T): Boolean

Properties

data
Link copied to clipboard
var data: T