Skip to content

Instantly share code, notes, and snippets.

@plnice
Last active February 18, 2021 09:39
Show Gist options
  • Save plnice/bdca61f199bab61b21d16a43fb22f268 to your computer and use it in GitHub Desktop.
Save plnice/bdca61f199bab61b21d16a43fb22f268 to your computer and use it in GitHub Desktop.
EnumWithDefault
@Inherited
@Target(CLASS)
@Retention(RUNTIME)
annotation class EnumWithDefault(
val value: String = "UNKNOWN"
)
@EnumWithDefault // Defaults to UNKNOWN
enum class Example {
FIRST, SECOND, UNKNOWN
}
@EnumWithDefault(value = "SECOND") // Defaults to SECOND
enum class Example2 {
FIRST, SECOND, THIRD
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment