Ruckus
fun MyEnumByRaw(raw: Int) = MyEnum.values().filter { it.rawValue == raw }.firstOrNull()
MyEnumByRaw(20)