Skip to content

Instantly share code, notes, and snippets.

@skydoves
Created September 11, 2024 02:39
Show Gist options
  • Save skydoves/50ea151511c03ae908463792a4089f0c to your computer and use it in GitHub Desktop.
Save skydoves/50ea151511c03ae908463792a4089f0c to your computer and use it in GitHub Desktop.
ui_version
enum class UiVersion(val value: Int) {
VERSION_1_0(1),
VERSION_2_0(2);
companion object {
fun toUiVersion(value: Int): UiVersion {
return when (value) {
VERSION_1_0.value -> VERSION_1_0
VERSION_2_0.value -> VERSION_2_0
else -> throw RuntimeException("undefined version!")
}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment