Created
May 14, 2019 10:25
-
-
Save Savrov/590e864d4abcd8138c268d9a2756c338 to your computer and use it in GitHub Desktop.
Enum with annotation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@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