blob: 8fd5a086d117d0a930de5385c6ef60f9841e1b7b (
plain)
1
2
3
4
|
package org.jetbrains.dokka.utilities
inline fun <reified T : Enum<*>> enumValueOrNull(name: String): T? =
T::class.java.enumConstants.firstOrNull { it.name.toUpperCase() == name.toUpperCase() }
|