Skip to content

Instantly share code, notes, and snippets.

@Savrov
Created May 14, 2019 10:25
Show Gist options
  • Save Savrov/590e864d4abcd8138c268d9a2756c338 to your computer and use it in GitHub Desktop.
Save Savrov/590e864d4abcd8138c268d9a2756c338 to your computer and use it in GitHub Desktop.
Enum with annotation
@IntDef(ZERO)
@Retention(AnnotationRetention.SOURCE)
annotation class ViewHolderType {
companion object {
const val ZERO = 0
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment