Registry

interface Registry(source)

Represents a type-safe associative array. It means that it stores association like Key<T> -> T for arbitrary types T.

Inheritors

Functions

Link copied to clipboard
abstract operator 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
abstract operator 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
abstract fun toMap(): Map<RegistryKeyMapWrapper<*>, Any?>

Represents this registry as Kotlin stdlib's map.