org.jetbrains.kotlinx.jupyter.common.EnumUtil.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of kotlin-jupyter-script-classpath-shadowed Show documentation
Show all versions of kotlin-jupyter-script-classpath-shadowed Show documentation
Kotlin Jupyter kernel script classpath with all dependencies inside one artifact
package org.jetbrains.kotlinx.jupyter.common
private val enumNameRegex = Regex("_(.)")
@OptIn(ExperimentalStdlibApi::class)
fun getNameForUser(name: String): String {
return enumNameRegex.replace(name.lowercase()) { match ->
match.groupValues[1].uppercase()
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy