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

equals
Link copied to clipboard
open operator fun equals(other: Any?): Boolean
getValue
Link copied to clipboard
operator fun getValue(thisRef: Any?, property: KProperty<*>): T
hashCode
Link copied to clipboard
open fun hashCode(): Int
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
toString
Link copied to clipboard
open fun toString(): String

Properties

data
Link copied to clipboard
var data: T