RegistryBuilder

Mutable version of Registry that is used by builder function.

Functions

Link copied to clipboard
open operator override fun <T> contains(registryKey: RegistryKey<T>): Boolean

Checks if the registryKey is stored in the registry and have association with anything.

Link copied to clipboard
infix fun <T> RegistryKey<T>.correspondsTo(value: T)

Associates this registry key with provided value overriding existing association of this registry key.

Link copied to clipboard
open operator override fun <T> get(registryKey: RegistryKey<T>): T

Retrieves value by this registryKey or throws exception if no association is present.

Link copied to clipboard
fun <T> Registry.getOrDefault(registryKey: RegistryKey<T>, default: T): T

Retrieves value by this registryKey or returns default value if no association is present.

Link copied to clipboard
inline fun <T> Registry.getOrElse(registryKey: RegistryKey<T>, block: () -> T): T

Retrieves value by this registryKey or computes block and returns its value if no association is present.

Link copied to clipboard
fun <T> Registry.getOrNull(registryKey: RegistryKey<T>): T?

Retrieves value by this registryKey or returns null if no association is present.

Link copied to clipboard
operator fun <T> set(registryKey: RegistryKey<T>, value: T)

Associates provided registryKey with provided value overriding existing association of the registryKey.

Link copied to clipboard
fun setFrom(from: Registry)

Copies associations from the from registry overriding existing ones if needed.

Link copied to clipboard
open override fun toMap(): Map<RegistryKeyMapWrapper<*>, Any?>

Represents this registry as Kotlin stdlib's map.