Skip to content

Instantly share code, notes, and snippets.

@Ibrahimhass
Last active February 23, 2023 18:49
Show Gist options
  • Save Ibrahimhass/2cef2cc09cb90762d979f878588d7ee0 to your computer and use it in GitHub Desktop.
Save Ibrahimhass/2cef2cc09cb90762d979f878588d7ee0 to your computer and use it in GitHub Desktop.
enum class Category {
GROCERY,
UTILITY,
RENT,
TRANSPORTATION,
DINE_OUT,
ENTERTAINMENT;
companion object {
fun getAsList(): List<Category> {
return values().toList()
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment