All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.github.yearnlune.search.graphql.EnumCompanion.kt Maven / Gradle / Ivy

package io.github.yearnlune.search.graphql

abstract class EnumCompanion(
    private val map: Map
) {
    fun fromValue(value: V): E = map[value] ?: throw RuntimeException("NOT FOUND")
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy