Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@steliosfran
Created November 17, 2022 09:43
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save steliosfran/a5bda031f4e1e5d6b3a97c2bedd7834f to your computer and use it in GitHub Desktop.
Save steliosfran/a5bda031f4e1e5d6b3a97c2bedd7834f to your computer and use it in GitHub Desktop.
enum class Role(val value: Int) {
Admin(1),
Moderator(2);
companion object {
fun fromValueOrNull(value: Int): Role? {
return values().firstOrNull { it.value == value }
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment